Index: third_party/WebKit/LayoutTests/editing/pasteboard/5065605.html |
diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/5065605.html b/third_party/WebKit/LayoutTests/editing/pasteboard/5065605.html |
deleted file mode 100644 |
index 3a1568f198cb840f6843800b6d7517ee8ff7d519..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/pasteboard/5065605.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<body> |
-<div id="div" contenteditable="true"><br></div> |
-<script src="../../resources/dump-as-markup.js"></script> |
-<script> |
-var div = document.getElementById("div"); |
-div.focus(); |
- |
-if (window.testRunner) |
- testRunner.dumpEditingCallbacks(); |
- |
-document.execCommand("InsertText", false, "This text should be red."); |
-document.execCommand("InsertParagraph"); |
-document.execCommand("InsertText", false, "This text should be red."); |
-document.execCommand("SelectAll"); |
-document.execCommand("ForeColor", false, "red"); |
-document.execCommand("Copy"); |
-window.getSelection().modify("move", "forward", "character"); |
-document.execCommand("InsertParagraph"); |
-document.execCommand("Paste"); |
- |
-Markup.description('This tests for a bug where text copied with Select All + Copy would lose its color.'); |
-Markup.dump('div'); |
- |
-</script> |
-</body> |
-</html> |