| Index: content/test/data/accessibility/event/inner-html-change.html
|
| diff --git a/content/test/data/accessibility/event/text-changed.html b/content/test/data/accessibility/event/inner-html-change.html
|
| similarity index 53%
|
| copy from content/test/data/accessibility/event/text-changed.html
|
| copy to content/test/data/accessibility/event/inner-html-change.html
|
| index 22d3357d7455e06817dd7665250750d01af42a31..ba2c2ff3c9a4e5cbc4cb8329e75a39891b7c7652 100644
|
| --- a/content/test/data/accessibility/event/text-changed.html
|
| +++ b/content/test/data/accessibility/event/inner-html-change.html
|
| @@ -5,12 +5,10 @@ The children changed / reorder event is fired an unpredictable number of times.
|
| <!DOCTYPE html>
|
| <html>
|
| <body>
|
| -<p id="p">Para</p>
|
| -<h2 id="h">Heading</h2>
|
| +<div role="group" id="main"><h1>A</h1><p>B</p></div>
|
| <script>
|
| function go() {
|
| - document.querySelector('#p').textContent = 'Modified Para';
|
| - document.querySelector('#h').firstChild.data = 'Modified Heading';
|
| + document.querySelector('#main').innerHTML = '<h1>C</h1><p>D</p>';
|
| }
|
| </script>
|
| </body>
|
|
|