Closed
Bug 1380451
Opened 7 years ago
Closed 6 years ago
create HTML table caption accessible unconditionally
Categories
(Core :: Disability Access APIs, enhancement, P2)
Core
Disability Access APIs
Tracking
()
RESOLVED
FIXED
mozilla65
Tracking | Status | |
---|---|---|
firefox65 | --- | fixed |
People
(Reporter: surkov, Assigned: MarcoZ)
Details
Attachments
(1 file)
(deleted),
text/x-phabricator-request
|
Details |
spun off bug 1321960 comment #38
we have GetRect().IsEmpty() check [1] when deciding to create or not create HTML:caption accessible, which makes a caption inaccessible in the example
<table>
<caption style="width: 0; height: 0">Some text</caption>
</table>
It seems the behavior goes from 377783 with no explanation. Any objections for reverting the change? What do other browsers do?
[1] https://hg.mozilla.org/mozilla-central/annotate/6fec4855b5345eb63fef57089e61829b88f5f4eb/layout/generic/nsBlockFrame.cpp#l6852
Reporter | ||
Updated•7 years ago
|
Flags: needinfo?(mzehe)
Assignee | ||
Comment 1•7 years ago
|
||
Inconclusive. Chrome renders it as a table caption, IE does render it as a regular div (or so it seems to NVDA), and Edge renders it as plain text as child of the table accessible.
I'd say we follow Chrome's example and just render the thing. Caption is an exotic enough element that we can assume author intent if they bother using it, even if they style it so that it is invisible.
Flags: needinfo?(mzehe)
Updated•7 years ago
|
Priority: -- → P5
Summary: create HTML table caption accessible uncondionally → create HTML table caption accessible unconditionally
Reporter | ||
Comment 2•7 years ago
|
||
It's definitely not p5, we have to fix to depend on layout update less than we do now, which is tightly related with our performance. Ideally we should get a fix around a next release or so, so bumping up to p2 for now to not get it lost in the backlog.
Priority: P5 → P2
Comment 3•7 years ago
|
||
How does this relate to bug 995888?
Reporter | ||
Comment 4•7 years ago
|
||
(In reply to James Teh [:Jamie] from comment #3)
> How does this relate to bug 995888?
Sounds like this bug will address bug 995888 partially, i.e. I don't think this will fix table interface, because this info is computed by layout, but it will fix the caption accessible issue.
Assignee | ||
Comment 5•6 years ago
|
||
I've just started investigating this while working on display:contents and making us more independent from the frame tree. Removin that conditional as Alex suggests in comment #0 causes us to create accessibles for all caption elements within a table. So the test for two captions, the second being ignored, fails. [1]
The second caption gets inserted first, but without text and without a text leaf child. It has zero height and width, even though the test file specifies text content.
[1] https://searchfox.org/mozilla-central/source/accessible/tests/mochitest/tree/test_table.html#21
Comment 6•6 years ago
|
||
I think we'll need to test whether this is the first caption in the table. I guess that will involve querying the DOM. HTMLTableElement has a GetCaption method, but I'm not sure how to safely get from an nsIContent to an HTMLTableElement. It's *probably* safe to static_cast, but I'm not sure if there is a safer way in DOM. Note that GetCaption essentially just walks through the child nodes looking for the first caption, so at worst, we could do that ourselves.
One problem is that dynamically inserting another caption before the first one (after the tree has been constructed) will result in two caption accessibles, the new (now correct) caption and the old (now incorrect) caption. However, you can fool our a11y engine into doing this already (since it only does the rectangle check when the accessible is created, not mutated), so I'm inclined not to care.
Assignee | ||
Updated•6 years ago
|
Assignee: nobody → mzehe
Status: NEW → ASSIGNED
Assignee | ||
Comment 7•6 years ago
|
||
Creates the HTML Caption accessible from the markup map, but only if it's the first caption. Other caption elements are ignored as before.
This also creates caption accessibles for those captions that have been collapsed to zero height and width via CSS.
Assignee | ||
Comment 8•6 years ago
|
||
Assignee | ||
Comment 9•6 years ago
|
||
And the run is clean. :)
Comment 10•6 years ago
|
||
Pushed by mzehe@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/e9588334915f
create HTML table caption accessible unconditionally, r=Jamie
Comment 11•6 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 6 years ago
status-firefox65:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla65
You need to log in
before you can comment on or make changes to this bug.
Description
•