| Index: content/test/data/accessibility/select.html
|
| diff --git a/content/test/data/accessibility/select.html b/content/test/data/accessibility/select.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d45679caf97f0d92c426c362553341feeb82c94e
|
| --- /dev/null
|
| +++ b/content/test/data/accessibility/select.html
|
| @@ -0,0 +1,25 @@
|
| +<!--
|
| +@MAC-ALLOW:roleDescription=*
|
| +@MAC-DENY:title=''
|
| +@MAC-DENY:value=''
|
| +@WIN-DENY:name=''
|
| +-->
|
| +<html>
|
| +<body>
|
| + <select id="A" name="Select A">
|
| + <option value="">Placeholder option</option>
|
| + <option value="1">Option 1</option>
|
| + <option value="2">Option 2</option>
|
| + </select>
|
| + <select id="B" name="Select B">
|
| + <option value="1">Option 1</option>
|
| + <option value="2" selected>Option 2</option>
|
| + <option value="3">Option 3</option>
|
| + </select>
|
| + <select id="B" name="Select C" requried>
|
| + <option value="1">Option 1</option>
|
| + <option value="2">Option 2</option>
|
| + <option value="3">Option 3</option>
|
| + </select>
|
| +</body>
|
| +</html>
|
|
|