| 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>
|
|
|