| Index: content/test/data/accessibility/event/menulist-focus.html
|
| diff --git a/content/test/data/accessibility/event/menulist-focus.html b/content/test/data/accessibility/event/menulist-focus.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..09b7eabc45c0cfdc3bc6a6e778142bcf752fe879
|
| --- /dev/null
|
| +++ b/content/test/data/accessibility/event/menulist-focus.html
|
| @@ -0,0 +1,18 @@
|
| +<!--
|
| +@MAC-DENY:AXLayoutComplete*
|
| +-->
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<select>
|
| + <option selected>Apple</option>
|
| + <option>Orange</option>
|
| + <option>Banana</option>
|
| +</select>
|
| +<script>
|
| + function go() {
|
| + document.querySelector('select').focus();
|
| + }
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|