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

Side by Side Diff: content/test/data/accessibility/event/inner-html-change.html

Issue 859133003: Fire AX text inserted event when embedded obj char changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor cleanup Created 5 years, 10 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 <!-- 1 <!--
2 The children changed / reorder event is fired an unpredictable number of times. 2 The children changed / reorder event is fired an unpredictable number of times.
3 @WIN-DENY:EVENT_OBJECT_REORDER* 3 @WIN-DENY:EVENT_OBJECT_REORDER*
4 --> 4 -->
5 <!DOCTYPE html> 5 <!DOCTYPE html>
6 <html> 6 <html>
7 <body> 7 <body>
8 <p id="p">Para</p> 8 <div role="group" id="main"><h1>A</h1><p>B</p></div>
9 <h2 id="h">Heading</h2>
10 <script> 9 <script>
11 function go() { 10 function go() {
12 document.querySelector('#p').textContent = 'Modified Para'; 11 document.querySelector('#main').innerHTML = '<h1>C</h1><p>D</p>';
13 document.querySelector('#h').firstChild.data = 'Modified Heading';
14 } 12 }
15 </script> 13 </script>
16 </body> 14 </body>
17 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698