Index: content/test/data/accessibility/event/listbox-next.html |
diff --git a/content/test/data/accessibility/event/listbox-next.html b/content/test/data/accessibility/event/listbox-next.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ab447af0277fb9af02f90c82f0beb40ea9f9643c |
--- /dev/null |
+++ b/content/test/data/accessibility/event/listbox-next.html |
@@ -0,0 +1,19 @@ |
+<!-- |
+@MAC-DENY:AXLayoutComplete* |
+--> |
+<!DOCTYPE html> |
+<html> |
+<body> |
+<select size=3> |
+ <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> |