Issue metadata
Sign in to add a comment
|
Blink should not fire separate updates when inner text gets set |
||||||||||||||||||||
Issue description
Load:
<h1 aria-atomic="true" id="live"aria-live="polite">foo</h1>
<button id="go">go</button>
<script>
document.getElementById('go').addEventListener('click', function(e) {
document.getElementById('live').innerText = 'bar';
});
</script>
- click the button
result:
there are separate events for text changes to
- static text
- heading
There should be one event that updates both of these nodes.
,
Oct 31
Aleventhal@ this seems related to some things you were working on with live regions. Is this already fixed? |
|||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||
Comment 1 by sheriffbot@chromium.org
, Sep 17Status: Untriaged (was: Available)