| Index: LayoutTests/editing/selection/caret-in-textarea-auto.html
|
| diff --git a/LayoutTests/editing/selection/caret-in-textarea-auto.html b/LayoutTests/editing/selection/caret-in-textarea-auto.html
|
| deleted file mode 100644
|
| index 2c3ad14965c6e99c96c0e477f3a08d3138ac3612..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/editing/selection/caret-in-textarea-auto.html
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/js-test.js"></script>
|
| -<textarea id="textarea" dir="auto" style="font-size: 20px; width: 20ex; border: solid thin black; padding: 10px;">א!</textarea>
|
| -<script>
|
| -description('Test caret position in a textarea with direction auto and having RTL text. When entering a LTR text caret position is changed.');
|
| -var textarea = document.getElementById('textarea');
|
| -textarea.focus();
|
| -var caretRect = textInputController.firstRectForCharacterRange(0, 0);
|
| -
|
| -window.testRunner.execCommand('MoveToEndOfLine');
|
| -document.execCommand('InsertLineBreak');
|
| -document.execCommand('InsertText', false, 'hell');
|
| -
|
| -var caretRect1 = textInputController.firstRectForCharacterRange(1, 0);
|
| -shouldNotBe('caretRect[0]', 'caretRect1[0]');
|
| -</script>
|
|
|