Left table border not consistently drawn i.e. drawn intermittently
Categories
(Core :: Web Painting, defect, P3)
Tracking
()
People
(Reporter: espressive, Unassigned)
Details
Attachments
(4 files)
This was originally reported by :peterbe and then discussed in #firefox.
Check this out. It could be a Firefox Nightly bug only. Open https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Cheatsheet
and look at the main big table there. When you scroll down, it changes appearance. Do
you see it?
tl;dr The left border on the table is not consistently drawn. See screenshots.
I went as far back as Firefox 36 and could still see reproduce the problem on both Mac and Windows. One thing to note is that the left side border is conditionally drawn based on a media query so, I wonder whether this may be the source of the problem?
@media #{min-width: 63.9385em} {
.standard-table {
border-left: 6px solid #276738;
}
}
| Reporter | ||
Comment 1•5 years ago
|
||
| Reporter | ||
Comment 2•5 years ago
|
||
Comment 3•5 years ago
|
||
Probably web painting or layout if it's been around that long.
Comment 4•5 years ago
|
||
It's hard to get a reduced testcase because when I save the page locally the resulting page using some js and it doesn't load properly.
Comment 5•5 years ago
|
||
This is fairly minimal.
Something with border-collapse probably.
Comment 6•5 years ago
|
||
There seems to be a bunch of border-collapse bugs, here are two that sounded similar bug 1527538 and bug 1072262.
Updated•5 years ago
|
Description
•