Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: third_party/WebKit/LayoutTests/editing/pasteboard/5065605.html

Issue 2342673003: Convert editing/pasteboard/5065605.html to use w3c test harness (Closed)
Patch Set: 2016-09-15T18:02:22 Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/pasteboard/5065605-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/pasteboard/5065605-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698