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

Unified Diff: content/test/data/accessibility/aria/aria-live.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-live.html
diff --git a/content/test/data/accessibility/aria/aria-live.html b/content/test/data/accessibility/aria/aria-live.html
index 83f4e6e9c2de804526ac5a8481933ddffbd08b80..42d12baa773db313fd385e0baae22e157219e9e9 100644
--- a/content/test/data/accessibility/aria/aria-live.html
+++ b/content/test/data/accessibility/aria/aria-live.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
<!--
@MAC-ALLOW:AXSubrole*
@MAC-ALLOW:AXARIALive*
@@ -5,11 +6,13 @@
@WIN-ALLOW:container*
@WIN-ALLOW:BUSY*
-->
-<!DOCTYPE html>
<html>
<body>
<div tabindex=0 role="marquee" aria-live="off"></div>
<div tabindex=1 role="marquee" aria-live="polite"></div>
<div tabindex=2 role="marquee" aria-live="assertive"></div>
+
+ <!-- Some roles such as "alert" have an implicit live status of assertive. -->
+ <div tabindex=3 role="alert"></div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698