Index: third_party/WebKit/LayoutTests/fast/forms/textarea-select.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-select.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-select.html |
deleted file mode 100644 |
index d404c09ac3637d1af7a72a465649474fad6d3a7d..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-select.html |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<textarea id="text"></textarea> |
-<script> |
-description("This test calls textarea.select and confirms selectionStart/End."); |
- |
-text.value = "hello\n"; |
-text.select(); |
-shouldBe("text.selectionStart", "0"); |
-shouldBe("text.selectionEnd", "6"); |
-</script> |
-</body> |
-</html> |