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

Unified Diff: content/test/data/accessibility/aria/aria-atomic.html

Issue 2163673003: Made ARIA alerts have an implicit aria-atomic of true and strengthened tests concerning aria-atomic… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed aria-atomic test. Created 4 years, 5 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/aria/aria-atomic.html
diff --git a/content/test/data/accessibility/aria/aria-atomic.html b/content/test/data/accessibility/aria/aria-atomic.html
index 3529969002c4860b38f80a8ee6e3c1206824843a..4c368f89508a5f568fd7cbd5d3ed6e5a339055c0 100644
--- a/content/test/data/accessibility/aria/aria-atomic.html
+++ b/content/test/data/accessibility/aria/aria-atomic.html
@@ -1,12 +1,16 @@
+<!DOCTYPE html>
<!--
@MAC-ALLOW:AXARIAAtomic=*
@WIN-ALLOW:atomic:*
@WIN-ALLOW:container-atomic:*
-->
-<!DOCTYPE html>
<html>
<body>
<p id="ariaatomicfalse" role="log" aria-live="polite" aria-atomic="false" tabindex="0"> This test is for aria-atomic="false" </p>
<p id="ariaatomictrue" role="log" aria-live="polite" aria-atomic="true" tabindex="1"> This test is for aria-atomic="true" </p>
+
+ <!-- Roles of "alert" and "status" have implicit aria-atomic of true. -->
+ <p id="alert" role="alert" tabindex="2">This test is for alert.</p>
+ <p id="status" role="status" tabindex="3">This test is for status.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698