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

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

Issue 2890723003: Slider events with valuetext (Closed)
Patch Set: Fix 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/aria/aria-separator.html
diff --git a/content/test/data/accessibility/aria/aria-separator.html b/content/test/data/accessibility/aria/aria-separator.html
index 3ba0eafa5cde1003c912b1424b27b6d1b7cd3c6b..8c6fe303ac5405106a87e2e70aa044093eff041b 100644
--- a/content/test/data/accessibility/aria/aria-separator.html
+++ b/content/test/data/accessibility/aria/aria-separator.html
@@ -1,12 +1,14 @@
<!--
@MAC-ALLOW:AXRole*
@WIN-ALLOW:xml-roles:*
+@WIN-ALLOW:currentValue*
-->
<!DOCTYPE html>
<html>
<body>
Before
-<div role="separator">This is ARIA separator.</div>
+<div role="separator" aria-valuemin="1" aria-valuenow="1" aria-valuemax="3">ARIA separator. No value when unfocusable.</div>
+<div role="separator" tabindex="-1" aria-valuemin="1" aria-valuenow="1" aria-valuemax="3">ARIA separator. Can have a value when focusable.</div>
After
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698