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

Unified Diff: content/test/data/accessibility/select.html

Issue 750933002: Modifying AX test for html select element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/select.html
diff --git a/content/test/data/accessibility/select.html b/content/test/data/accessibility/select.html
index c69924731a615828bed9d7c718f02945980ea375..821831d560aa4e409fc65e9c600229eb1278201f 100644
--- a/content/test/data/accessibility/select.html
+++ b/content/test/data/accessibility/select.html
@@ -1,5 +1,9 @@
<!--
@MAC-ALLOW:AXRoleDescription=*
+@WIN-ALLOW:MULTISELECTABLE
+@WIN-ALLOW:EXTSELECTABLE
+@WIN-ALLOW:SELECT*
+@WIN-ALLOW:HASPOPUP
dmazzoni 2014/11/29 07:52:18 Optional: consider @WIN-ALLOW:xml-roles to show th
-->
<html>
<body>
@@ -13,7 +17,17 @@
<option value="2" selected>Option 2</option>
<option value="3">Option 3</option>
</select>
- <select id="B" name="Select C" requried>
+ <select id="C" name="Select C" requried>
+ <option value="1">Option 1</option>
+ <option value="2">Option 2</option>
+ <option value="3">Option 3</option>
+ </select>
+ <select id="D" name="Select D" multiple="2">
+ <option value="1">Option 1</option>
+ <option value="2">Option 2</option>
+ <option value="3">Option 3</option>
+ </select>
+ <select id="E" name="Select E" size="3">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>

Powered by Google App Engine
This is Rietveld 408576698