AT is not informed of dynamic style and language changes |
|
Issue descriptionAn assistive technology relies on events to be told when the style or the language of a piece of text changes. Currently, we don't fire the appropriate events for each platform, so if only the style or language changes, but not the actual text, a screen reader for example will still announce the old style / language.
,
Nov 14
data:text/html,
<p style="color: red">
It's green if you are a new user.
</p>
<script>
if (firstTimeUser)
document.querySelector('p').style.color = 'green';
</script>
,
Nov 14
Paste the above snippet in the address bar. Press JawsKey+5 to read the foreground color. Expected value: green Actual value: red. |
|
►
Sign in to add a comment |
|
Comment 1 by aleventhal@chromium.org
, Nov 14