Index: content/test/data/accessibility/event/menulist-expand.html |
diff --git a/content/test/data/accessibility/event/menulist-expand.html b/content/test/data/accessibility/event/menulist-expand.html |
deleted file mode 100644 |
index 057adc6551aca3f9235376bb71500c3f96b06cbc..0000000000000000000000000000000000000000 |
--- a/content/test/data/accessibility/event/menulist-expand.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!-- |
-@MAC-DENY:AXLayoutComplete* |
---> |
-<!DOCTYPE html> |
-<html> |
-<body> |
-<select> |
- <option>Apple</option> |
- <option>Orange</option> |
- <option>Banana</option> |
-</select> |
-<script> |
- document.querySelector('select').focus(); |
- function go() { |
- var comboBox = document.querySelector('select'); |
- var clickEvent = document.createEvent('MouseEvents'); |
- clickEvent.initMouseEvent('mousedown', true, true, window); |
- comboBox.dispatchEvent(clickEvent); |
- } |
-</script> |
-</body> |
-</html> |