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

Unified Diff: third_party/WebKit/LayoutTests/editing/selection/4947387.html

Issue 2525273002: [Editing][CodeHealth] Convert editing/selection to utilize w3c test harness part 1. (Closed)
Patch Set: update Created 3 years, 11 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/selection/after-line-wrap.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/selection/4947387.html
diff --git a/third_party/WebKit/LayoutTests/editing/selection/4947387.html b/third_party/WebKit/LayoutTests/editing/selection/4947387.html
deleted file mode 100644
index 4ecbe49645a2a544dea3584da12693e4cd0a2b84..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/selection/4947387.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<p>This tests moveTo{Beginning, End}OfLineAndModifySelection. It should operate on line boundaries and not paragraph boundaries. To run it manually, click inside the first line of the editable region below and do Command+Shift+Left/Right Arrow, the selection should extend to the start/end of the line, not the start/end of the paragraph. Also, moveTo{Beginning, End}OfParagraphAndModifySelection should work.</p>
-<div id="div" contenteditable="true" style="width: 200px;">The quick brown fox jumped over the lazy brown dog.</div>
-
-<script>
-
-if (window.testRunner) {
-
- window.testRunner.dumpEditingCallbacks();
-
- var div = document.getElementById("div");
- var text = div.firstChild;
- var sel = window.getSelection();
-
- sel.collapse(text, text.length);
- testRunner.execCommand("MoveToBeginningOfLineAndModifySelection");
-
- sel.collapse(text, 0);
- testRunner.execCommand("MoveToEndOfLineAndModifySelection");
-
- sel.collapse(text, text.length);
- testRunner.execCommand("MoveToBeginningOfParagraphAndModifySelection");
-
- sel.collapse(text, 0);
- testRunner.execCommand("MoveToEndOfParagraphAndModifySelection");
-}
-</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/selection/after-line-wrap.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698