Index: third_party/WebKit/LayoutTests/editing/selection/editable-html-element.html |
diff --git a/third_party/WebKit/LayoutTests/editing/selection/editable-html-element.html b/third_party/WebKit/LayoutTests/editing/selection/editable-html-element.html |
deleted file mode 100644 |
index 8011318dec6d1aec82f552276a1c99244e7ac2df..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/selection/editable-html-element.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<html contenteditable="true" id="test"> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpEditingCallbacks(); |
-</script> |
- |
-<script> |
-function runTest() { |
- var s = window.getSelection(); |
- var e = document.getElementById("test"); |
- |
- e.focus(); |
- document.execCommand("InsertText", false, "\t"); |
- document.execCommand("InsertText", false, "This tests to see where the selection is set when an html element is focused."); |
- document.execCommand("InsertHTML", false, "<br>We set it inside the body because we don't want to allow editing outside the body. This test also does some editing to make sure it happens in the body."); |
-} |
-</script> |
-<body onLoad="runTest();"> |
-</body> |
-</html> |