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

Unified Diff: content/test/data/accessibility/event/live-region-remove.html

Issue 2897943003: Fix DumpAccessibilityEvents tests on Mac and improve test coverage (Closed)
Patch Set: Rebaseline one more windows test Created 3 years, 7 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/live-region-remove.html
diff --git a/content/test/data/accessibility/event/live-region-remove.html b/content/test/data/accessibility/event/live-region-remove.html
new file mode 100644
index 0000000000000000000000000000000000000000..b3ef1bdeee0706cff3c60e8e0b7a6df768cf736e
--- /dev/null
+++ b/content/test/data/accessibility/event/live-region-remove.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<body>
+<div id="live" aria-live="polite"><p id="p">Before</p></div>
+<script>
+ function go() {
+ var p = document.getElementById('p');
+ p.parentElement.removeChild(p);
+ }
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698