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

Unified Diff: content/test/data/accessibility/aria/aria-button.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-button.html
diff --git a/content/test/data/accessibility/aria/aria-button.html b/content/test/data/accessibility/aria/aria-button.html
index cd40c4ed8e6139b47aa49ebd5e9c0eabacc643dc..8e81db87b76c6d7759dc9630af0b2c6621c8276f 100644
--- a/content/test/data/accessibility/aria/aria-button.html
+++ b/content/test/data/accessibility/aria/aria-button.html
@@ -1,18 +1,19 @@
<!--
@MAC-ALLOW:AXRole*
@MAC-ALLOW:AXSubrole*
-@WIN-ALLOW:xml-roles:*
@WIN-ALLOW:checkable*
@WIN-ALLOW:HASPOPUP
+@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:PRESSED
+@WIN-ALLOW:xml-roles:*
-->
<!DOCTYPE html>
<html>
<body>
- <div tabindex=0 role="button"></div>
- <div tabindex=1 role="button" aria-pressed="true"></div>
- <div tabindex=2 role="button" aria-pressed="false"></div>
- <div tabindex=3 role="button" aria-haspopup="true"></div>
- <div tabindex=4 role="button" aria-haspopup="false"></div>
+ <div tabindex=0 role="button">Button1</div>
+ <div tabindex=1 role="button" aria-pressed="true">Button2</div>
+ <div tabindex=2 role="button" aria-pressed="false">Button3</div>
+ <div tabindex=3 role="button" aria-haspopup="true">Button4</div>
+ <div tabindex=4 role="button" aria-haspopup="false">Button5</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698