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

Unified Diff: third_party/WebKit/LayoutTests/editing/selection/selection-actions.html

Issue 2970903002: Remove unusable test: editing/selection/selection-actions.html (Closed)
Patch Set: Created 3 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/selection/selection-actions.html
diff --git a/third_party/WebKit/LayoutTests/editing/selection/selection-actions.html b/third_party/WebKit/LayoutTests/editing/selection/selection-actions.html
deleted file mode 100644
index e03bcaadd598ea7733e7a222f3946f8573ee0991..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/selection/selection-actions.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<html>
-<head>
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-
-
-<script>
-
-function editingTest() {
- var start = document.getElementById("start");
-
- x = start.offsetLeft + 2;
- y = start.offsetTop + 2;
-
- eventSender.mouseMoveTo(x, y);
- eventSender.mouseDown();
- eventSender.mouseUp();
- eventSender.mouseDown();
-
- y = y + 30;
-
- eventSender.mouseMoveTo(x, y);
- eventSender.mouseUp();
-
- testRunner.execCommand("MoveBackward");
- testRunner.execCommand("MoveDown");
- testRunner.execCommand("MoveForward");
- testRunner.execCommand("MoveLeft");
- testRunner.execCommand("MoveRight");
- testRunner.execCommand("MoveToBeginningOfDocument");
- testRunner.execCommand("MoveToBeginningOfLine");
- testRunner.execCommand("MoveToBeginningOfParagraph");
- testRunner.execCommand("MoveToEndOfDocument");
- testRunner.execCommand("MoveToEndOfLine");
- testRunner.execCommand("MoveToEndOfParagraph");
- testRunner.execCommand("MoveUp");
- testRunner.execCommand("MoveParagraphBackward");
- testRunner.execCommand("MoveParagraphForward");
- testRunner.execCommand("MoveWordBackward");
- testRunner.execCommand("MoveWordForward");
- testRunner.execCommand("MoveWordLeft");
- testRunner.execCommand("MoveWordRight");
- testRunner.execCommand("PageDown");
- testRunner.execCommand("PageUp");
-}
-
-</script>
-</head>
-<body style="overflow:hidden">
-This tests whether certain NSResponder methods that should only operate on editable regions modify a selection that is not in an editable region.<br>
-This is a para<span style="color:blue;" id="start">g</span>raph.<br>
-Some text<br>
-Some text<br>
-Some text<br>
-Some text<br>
-This is a paragraph.
-<script>
-editingTest();
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698