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

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

Issue 2917363002: Automatically fire AX events on Mac based on tree changes (Closed)
Patch Set: Fix accidental shadowing of BrowserAccessibilityManager::OnAtomicUpdateFinished, caught by browser … Created 3 years, 6 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-add-live-attribute.html
diff --git a/content/test/data/accessibility/event/live-region-add-live-attribute.html b/content/test/data/accessibility/event/live-region-add-live-attribute.html
new file mode 100644
index 0000000000000000000000000000000000000000..c262aa0afedba01aff99f5f5dc31992b32205f61
--- /dev/null
+++ b/content/test/data/accessibility/event/live-region-add-live-attribute.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<body>
+<p id="live">Live region</p>
+<script>
+ function go() {
+ var p = document.getElementById('live');
+ p.setAttribute('aria-live', 'polite');
+ }
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698