Mark Rogers

Results 88 comments of Mark Rogers

I'd agree with deprecation. I'm assuming the numbers above apply to text/html (where AT behaviour is now consistent). If the applicability was changed to application/xhtml+xml where there are still inconsistencies,...

Definitely agree that the inconsistencies should be documented, otherwise you get into the same problem that happened when trying to deprecate WCAG 4.1.1 https://github.com/w3c/wcag/issues/770 There was no documentation on which...

Is there anywhere we can view the built HTML for this branch? The diffs are so big they're hard to read, and since it's a new rule the whole thing...

For numbers this might be true, but for words there are definitely cases where adding / removing / moving spaces completely changes the meaning. For example: speed of art !=...

And an example Fibonacci sequence where the spaces are important: `0` `1` `1` `2` `3` `5` `8` `13` `21` `34` != `0112358132134`

Does anyone know how speech input works reacts when the same number is spoken in different ways? 2.5.3. Label in Name targets speech input, so speaking the visible label text...

If you have macOS 10.15 or later you can enable Voice Control in Preferences. https://support.apple.com/en-gb/HT210539 Activating links and controls labelled with numbers in Voice Control looks problematic since VC also...

The lack of a role mapping for `input type=password` is due to security concerns: https://github.com/w3c/aria/issues/935 Some other input types also have no ARIA role mapping, but map to various platform-specfic...

One way of doing this is looking at the platform-specific roles for controls with no ARIA role mapping. For `input type=password` this [maps](https://www.w3.org/TR/html-aam-1.0/#el-input-password) to: - `ROLE_SYSTEM_TEXT` The object represents selectable...

>>So, after an element is referenced using aria-describedby, the referenced element goes through the same algorithm to determine that new element's accessible name, not it's description >I assumed so, but...