Index: LayoutTests/editing/input/caret-at-the-edge-of-input.html |
=================================================================== |
--- LayoutTests/editing/input/caret-at-the-edge-of-input.html (revision 113050) |
+++ LayoutTests/editing/input/caret-at-the-edge-of-input.html (working copy) |
@@ -1,19 +0,0 @@ |
-<!DOCTYPE html> |
-<head> |
-</head> |
-<body> |
-<div>When the caret reaches the edge of the input box, on the next input if must jump to the center of the control.</div> |
-<input type="text" name="input-edit" id="input-edit" size="10" value="012345678901234567890123456789" /> |
-<script> |
- |
-var inputEdit = document.getElementById("input-edit"); |
-inputEdit.focus(); |
-var inputEditContent = inputEdit.value; |
-inputEdit.setSelectionRange(0, 0); |
-if (window.eventSender) { |
- for (var i = 0; i < inputEdit.size * 1.2; ++i) |
- eventSender.keyDown(inputEditContent[i]); |
-} |
- |
-</script> |
-</body> |