Index: third_party/WebKit/LayoutTests/editing/selection/move-by-character-crash-test-textarea.html |
diff --git a/third_party/WebKit/LayoutTests/editing/selection/move-by-character-crash-test-textarea.html b/third_party/WebKit/LayoutTests/editing/selection/move-by-character-crash-test-textarea.html |
deleted file mode 100644 |
index 63fb48c76c50606c7aafce023bda7d9ccd1d405a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/selection/move-by-character-crash-test-textarea.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<body> |
-This test sets caret at the beginning of backward text and moving the character to left and right. WebKit should not crash and you should see PASS below: |
-<textarea id="editor">‮LTR |
-</textarea> |
-<script> |
-onload = function() { |
- var sel = window.getSelection(); |
- sel.empty(); |
- var test = document.getElementById("editor"); |
- test.focus(); |
- test.selectionDirection = 'none'; |
- test.selectionStart = 0; |
- test.selectionEnd = 0; |
- getSelection().modify("move", "left", "character"); |
- getSelection().modify("move", "left", "character"); |
- test.selectionDirection = 'none'; |
- test.selectionStart = 1; |
- test.selectionEnd = 1; |
- getSelection().modify("move", "right", "character"); |
- getSelection().modify("move", "right", "character"); |
- document.body.innerHTML = "PASS"; |
-}; |
- |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-</script> |
-</body> |
-</html> |