- From: Joseph Scheuhammer <clown@alum.mit.edu>
- Date: Thu, 04 Dec 2014 14:54:17 -0500
- To: Matthew King <mattking@us.ibm.com>, Joanmarie Diggs <jdiggs@igalia.com>
- CC: "'W3C WAI Protocols & Formats'" <public-pfwg@w3.org>
Hi Matt,
> We already have role presentation for doing things like flattening
> layout tables.
For the sake of seeing what happens, I modified the example to use
role="presentation" for each paragraph, like so:
<div>
<p role="presentation">I</p>
<p role="presentation">like</p>
<p role="presentation">turtles</p>
</div>
The results:
- FF33.1/ATK/AT-SPI: one accessible for the <div>, with role
ROLE_SECTION, with an accessible text property, whose text is
"Iliketurtles" (no spaces).
- FF34/IA2: three accessibles for the <p> elements, each with
ROLE_TEXT, each having an accessible name property. The names are "I",
"like", and "turtles", respectively.
- Safari/AXAPI: three accessibles for the <p> elements, each with role
AXStaticText, each having an AXValue property. The AXValues are "I",
"like", and "turtles".
--
;;;;joseph.
'Array(16).join("wat" - 1) + " Batman!"'
- G. Bernhardt -
Received on Thursday, 4 December 2014 19:54:44 UTC