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