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..b1bba2bce43da25f0fc84b8d3a069348fd5c6a20 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 |
--> |
<html> |
<body> |
@@ -13,7 +17,12 @@ |
<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"> |
dmazzoni
2014/11/25 07:55:54
What's also needed is <select size=10> (where 10 c
|
<option value="1">Option 1</option> |
<option value="2">Option 2</option> |
<option value="3">Option 3</option> |