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

Unified Diff: LayoutTests/editing/selection/fake-doubleclick.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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: LayoutTests/editing/selection/fake-doubleclick.html
diff --git a/LayoutTests/editing/selection/fake-doubleclick.html b/LayoutTests/editing/selection/fake-doubleclick.html
deleted file mode 100644
index be90f80805b128fcdee3edc5748044e9153bbef6..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/selection/fake-doubleclick.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-<head>
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-
-<style>
-body { margin: 0; padding: 0 }
-</style>
-<script type="text/javascript">
-function step4()
-{
- eventSender.mouseUp();
- testRunner.notifyDone();
-}
-
-function step3()
-{
- eventSender.mouseDown();
- window.setTimeout(step4, 1);
-}
-
-function step2()
-{
- eventSender.mouseUp();
- window.setTimeout(step3, 100);
-}
-
-function step1()
-{
- eventSender.mouseDown();
- window.setTimeout(step2, 1);
-}
-
-function step0()
-{
- eventSender.mouseMoveTo(10, 10);
- window.setTimeout(step1, 1);
-}
-
-step0();
-testRunner.waitUntilDone();
-</script>
-</head>
-<body>
-<div contenteditable>Select me, select me, select me</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698