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

Unified Diff: third_party/WebKit/LayoutTests/editing/pasteboard/merge-after-delete.html

Issue 2182013002: Convert editing/pasteboard/merge-after-delete*.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-07-27T10:40:52 Created 4 years, 5 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
Index: third_party/WebKit/LayoutTests/editing/pasteboard/merge-after-delete.html
diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/merge-after-delete.html b/third_party/WebKit/LayoutTests/editing/pasteboard/merge-after-delete.html
deleted file mode 100644
index fe88ae4939ec1d53251368ebc7c818b66e0e4d25..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/pasteboard/merge-after-delete.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-<style>
-div {
- border: 1px solid blue;
- margin: 4px;
-}
-</style>
-
-<div id="test" contenteditable="true"><div>foo</div>bar<br></div>
-
-<script>
-var s = window.getSelection();
-var e = document.getElementById("test");
-
-s.collapse(e, 0);
-
-s.modify("move", "forward", "character");
-s.modify("extend", "forward", "line");
-s.modify("extend", "forward", "line");
-
-document.execCommand("InsertHTML", false, "<div>foo</div><br class='Apple-interchange-newline'>");
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698