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

Unified Diff: third_party/WebKit/LayoutTests/editing/inserting/insert-br-009.html

Issue 2175673002: Convert editing/inserting/insert-br-00[0-9].html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-07-22T18:29:29 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/inserting/insert-br-009.html
diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-br-009.html b/third_party/WebKit/LayoutTests/editing/inserting/insert-br-009.html
deleted file mode 100644
index 1b0f94b232fa3001d124e2a37ef519728d85197c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/inserting/insert-br-009.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-<p>This tests for a bug in InsertLineBreakCommand. Only one line break should be inserted and the caret should end up at the end of the bordered div below.</p><div contenteditable="true" id="div" style="white-space:pre; border: 1px solid black;">Hello world.
-
-</div>
-
-<script>
-var sel = window.getSelection();
-var div = document.getElementById("div");
-sel.collapse(div, 0);
-sel.modify("move", "forward", "line");
-document.execCommand("InsertLineBreak");
-</script>

Powered by Google App Engine
This is Rietveld 408576698