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