Update broken references to image assets
[chromium-blink-merge.git] / content / test / data / accessibility / event / text-changed.html
blob22d3357d7455e06817dd7665250750d01af42a31
1 <!--
2 The children changed / reorder event is fired an unpredictable number of times.
3 @WIN-DENY:EVENT_OBJECT_REORDER*
4 -->
5 <!DOCTYPE html>
6 <html>
7 <body>
8 <p id="p">Para</p>
9 <h2 id="h">Heading</h2>
10 <script>
11 function go() {
12 document.querySelector('#p').textContent = 'Modified Para';
13 document.querySelector('#h').firstChild.data = 'Modified Heading';
15 </script>
16 </body>
17 </html>