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

Unified Diff: LayoutTests/platform/chromium/editing/text-iterator/findString-restarts-at-last-position.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/platform/chromium/editing/text-iterator/findString-restarts-at-last-position.html
diff --git a/LayoutTests/platform/chromium/editing/text-iterator/findString-restarts-at-last-position.html b/LayoutTests/platform/chromium/editing/text-iterator/findString-restarts-at-last-position.html
deleted file mode 100644
index e671fbc3b9cd8606e6adbfeb69bebe56fb1cd91e..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/editing/text-iterator/findString-restarts-at-last-position.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
-<script src=../../../../fast/js/resources/js-test-pre.js language="javascript" type="text/javascript"></script>
-<title>Testing that searching for text restarts at the last active match.</title>
-</head>
-<body>
- <div id="container">
- Failure: If the second search ends up finding the text in this line we didn't restart the search from the last active match: last_step.<br />
- Start: The first search should match this word: first_step.<br />
- Success: The second search should match this word: last_step. Subsequent searches should fail.
- </div>
-<pre id="console" style="visibility: hidden;"></pre>
-<script>
-function log(message)
-{
- document.getElementById("console").appendChild(document.createTextNode(message + "\n"));
-}
-
-if (!window.testRunner)
- testFailed('This test requires the testRunner object');
-else {
- shouldBeTrue('testRunner.findString("first_", [])');
- shouldBeTrue('testRunner.findString("first_step", [])');
- shouldBeTrue('testRunner.findString("last_step", [])');
- shouldBeFalse('testRunner.findString("last_step", [])');
-}
-
-document.getElementById("console").style.removeProperty("visibility");
-
-var successfullyParsed = true;
-</script>
-<script src="../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698