Closed
Bug 740743
Opened 13 years ago
Closed 13 years ago
overflow not implemented for legend elements inside fieldset
Categories
(Core :: Layout, defect)
Core
Layout
Tracking
()
RESOLVED
FIXED
mozilla14
People
(Reporter: steve.james, Assigned: MatsPalmgren_bugz)
Details
(Keywords: testcase)
Attachments
(2 files)
376 bytes,
text/html
|
Details | |
15.73 KB,
patch
|
bzbarsky
:
review+
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120329 Firefox/14.0a1
Build ID: 20120329031156
Steps to reproduce:
Navigate to page http://forms.enfield.gov.uk/swiftlg/apas/run/wphappcriteria.display
Actual results:
Text box labels display incorrectly in Nightly 14 Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120329 Firefox/14.0a1 ID:20120329031156
The "correct" text box labels seem to be overlayed with an incorrect set of labels that obscure the correct ones and should not be displayed.
Expected results:
Text box labels appear fine in IE 9.
What happens is the page tries to hide legend content through setting overflow: hidden and width/height: 0;
Firefox doesn't apply overflow on legend elements and as far as i can tell never have (not sure about the standards).
The obvious solution would be for the page to use display: none; in its .hidden class instead.
Comment 2•13 years ago
|
||
Firefox shows the text of legend.
Opera and Chrome does not show the text of legend.
Updated•13 years ago
|
Component: Untriaged → Layout
Product: Firefox → Core
QA Contact: untriaged → layout
Version: 14 Branch → Trunk
Comment 3•13 years ago
|
||
The standards don't define the behavior of <legend> at all.
We could pretty easily convert overflow:hidden on <legend> into a cliprect. Actually supporting scrolling on it would take more work, but might be a good idea...
(In reply to Cork from comment #1)
> Firefox doesn't apply overflow on legend elements and as far as i can tell
> never have (not sure about the standards).
I was aware that this bug exists for fieldset (bug 261037 and bug 504622) and table-caption (partly, bug 553977), but I didn't know that the legend element is affected as well.
> The obvious solution would be for the page to use display: none; in its
> .hidden class instead.
The website tries to hide the labels in an accessible manner using absolute positioning, but that doesn't work, because 'absolute' is misspelled 'adsolute'.
That's all what's needed to fix the website.
(In reply to Boris Zbarsky (:bz) from comment #3)
> The standards don't define the behavior of <legend> at all.
Apparently a short text has been added to HTML5's list of expectations not long ago:
http://www.w3.org/TR/html5/rendering.html#rendered-legend
But that's still no real definition.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Keywords: testcase
OS: Windows 7 → All
Hardware: x86_64 → All
Summary: Text box labelling incorrect in web page → overflow not implemented for legend elements inside fieldset
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → matspal
Assignee | ||
Comment 5•13 years ago
|
||
Attachment #613093 -
Flags: review?(bzbarsky)
Comment 6•13 years ago
|
||
Comment on attachment 613093 [details] [diff] [review]
fix+test
r=me
Attachment #613093 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 7•13 years ago
|
||
Flags: in-testsuite+
Target Milestone: --- → mozilla14
Comment 8•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 9•13 years ago
|
||
Now fixed and tested OK in today's nightly build on original page showing problem.
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120415 Firefox/14.0a1 ID:20120415030725
You need to log in
before you can comment on or make changes to this bug.
Description
•