Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: content/test/data/accessibility/event/text-changed.html

Issue 848653002: Re-land: Send Windows accessibility events based on tree updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@implicit_1_tests
Patch Set: Rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!--
2 The children changed / reorder event is fired an unpredictable number of times.
3 @WIN-DENY:EVENT_OBJECT_REORDER*
4 -->
1 <!DOCTYPE html> 5 <!DOCTYPE html>
2 <html> 6 <html>
3 <body> 7 <body>
4 <p id="p">Para</p> 8 <p id="p">Para</p>
5 <h2 id="h">Heading</h2> 9 <h2 id="h">Heading</h2>
6 <script> 10 <script>
7 function go() { 11 function go() {
8 document.querySelector('#p').textContent = 'Modified Para'; 12 document.querySelector('#p').textContent = 'Modified Para';
9 document.querySelector('#h').firstChild.data = 'Modified Heading'; 13 document.querySelector('#h').firstChild.data = 'Modified Heading';
10 } 14 }
11 </script> 15 </script>
12 </body> 16 </body>
13 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698