 Chromium Code Reviews
 Chromium Code Reviews Issue 750933002:
  Modifying AX test for html select element  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 750933002:
  Modifying AX test for html select element  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| 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> |