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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698