Index: third_party/WebKit/LayoutTests/editing/pasteboard/4930986-2.html |
diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/4930986-2.html b/third_party/WebKit/LayoutTests/editing/pasteboard/4930986-2.html |
deleted file mode 100644 |
index e1ac132eb91d8c8a481bad8ca5fbd39c943d9708..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/pasteboard/4930986-2.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-<html> |
-<head> |
-<style> |
-blockquote { |
- color: blue; |
- border-left: 2px solid blue; |
- margin-left: 0px; |
- padding-left: 10px; |
-} |
-</style> |
-<script> |
-function runTest() { |
- div = document.getElementById("edit"); |
- div.focus(); |
- document.execCommand("InsertHTML", false, "<blockquote class='Apple-paste-as-quotation'><span class='Apple-style-span' style='color: black;'><span class='Apple-style-span' style='color: red;'>This text should be red (it should be wrapped in a style span).</span></span></blockquote>"); |
- if (window.testRunner) { |
- window.testRunner.dumpAsText(); |
- document.body.innerText = document.getElementById("description").innerText + "\n" + div.innerHTML; |
- } |
-} |
-</script> |
-</head> |
-<body onload="runTest();"> |
-<div id="description">This tests to make sure that content that is colored by the user is pasted with that color during a Paste as Quotation.</div> |
-<div id="edit" contenteditable="true"></div> |
-</body> |
-</html> |