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

Unified Diff: third_party/WebKit/LayoutTests/editing/selection/mixed-editability-3.html

Issue 1806423003: Convert editing/selection layout tests to use w3c test harness, volume 6 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/selection/mixed-editability-3.html
diff --git a/third_party/WebKit/LayoutTests/editing/selection/mixed-editability-3.html b/third_party/WebKit/LayoutTests/editing/selection/mixed-editability-3.html
deleted file mode 100644
index f11148f3b1e04ffa3448bb971a695a671bcc3dd1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/selection/mixed-editability-3.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-<p>This tests moving the caret forward through content of mixed editability. The caret should move down one line from the editable piece to the editable piece that's embedded in a non-editable piece.</p>
-
-<div contenteditable="true" id="test">
-editable
-<table border="1" contenteditable="false"><tr><td contenteditable="true">editable</td></tr></table>
-editable
-</div>
-
-<script>
-var e = document.getElementById("test");
-var s = window.getSelection();
-
-s.collapse(e, 0);
-
-s.modify("move", "forward", "line");
-</script>

Powered by Google App Engine
This is Rietveld 408576698