Re: Question regarding role="text" example 15

role="presentation" is about to remove semantic, implementations may
differ. role="text" from example 15 is supposed to make same thing.
Implementation is not yet defined as Joanie noticed (that could be spaces,
no spaces, \n or I assume each text can be wrapped by generic accessible as
role="presentation" does.

On Thu, Dec 4, 2014 at 11:54 AM, Joseph Scheuhammer <clown@alum.mit.edu>
wrote:

> 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 21:29:15 UTC