Index: LayoutTests/accessibility/input-text-caret-position.html |
diff --git a/LayoutTests/accessibility/input-text-caret-position.html b/LayoutTests/accessibility/input-text-caret-position.html |
deleted file mode 100644 |
index dd92b6b73f7d96bc7657b52eceddab4b9ff30eea..0000000000000000000000000000000000000000 |
--- a/LayoutTests/accessibility/input-text-caret-position.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <script src="../resources/js-test.js"></script> |
- </head> |
- <body> |
- |
- <input type="text" id="input" value="Line 1"> |
- |
- <p id="description"></p> |
- <div id="console"></div> |
- |
- <script> |
- description("This tests that caret position is reported correctly for text input elements."); |
- |
- if (window.accessibilityController) { |
- |
- var input = document.getElementById('input'); |
- input.focus(); |
- var inputAccessible = |
- accessibilityController.accessibleElementById('input'); |
- |
- for (var characterIndex = 0; characterIndex < 7; ++characterIndex) { |
- input.setSelectionRange(characterIndex, characterIndex); |
- shouldBeEqualToNumber("inputAccessible.selectionStart", |
- characterIndex); |
- shouldBeEqualToNumber("inputAccessible.selectionEnd", |
- characterIndex); |
- } |
- |
- } |
- </script> |
- |
- </body> |
-</html> |