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

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

Issue 1416873015: Text controls should expose their value instead of their name via IAccessibleText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed radio menu items test on Android. Created 5 years, 1 month 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-checkbox.html
diff --git a/content/test/data/accessibility/aria/aria-checkbox.html b/content/test/data/accessibility/aria/aria-checkbox.html
index 13552cca37c8cd699976d9d207dbb9ed87b81d95..99f05f0910ecc7d4f0db8ca96367e2a8657ca0d5 100644
--- a/content/test/data/accessibility/aria/aria-checkbox.html
+++ b/content/test/data/accessibility/aria/aria-checkbox.html
@@ -1,16 +1,17 @@
<!--
@MAC-ALLOW:AXRole*
-@WIN-ALLOW:IA2_STATE_*
-@WIN-ALLOW:xml-roles:*
@WIN-ALLOW:checkable:*
@WIN-ALLOW:CHECKED*
+@WIN-ALLOW:ia2_hypertext=*
+@WIN-ALLOW:IA2_STATE_*
@WIN-ALLOW:MIXED*
+@WIN-ALLOW:xml-roles:*
-->
<html>
<body>
- <div role="checkbox" tabindex=0 aria-checked="true"></div>
- <div role="checkbox" tabindex=1 aria-checked="false"></div>
- <div role="checkbox" tabindex=2 aria-checked="mixed"></div>
- <div role="checkbox" tabindex=3 aria-checked="undefined"></div>
+ <div role="checkbox" tabindex=0 aria-checked="true">CheckBox1</div>
+ <div role="checkbox" tabindex=1 aria-checked="false">CheckBox2</div>
+ <div role="checkbox" tabindex=2 aria-checked="mixed">CheckBox3</div>
+ <div role="checkbox" tabindex=3 aria-checked="undefined">CheckBox4</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698