blob: e7562e922e14e0414f34fece87ae78562f69c108 [file] [log] [blame]
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var passed = true;
function fail(s) {
document.body.innerHTML += "FAIL: " + s + "<br>";
passed = false;
}
function runTest() {
if (window.find()) fail('found: find with no parameters');
if (window.find('')) fail('found: empty string');
if (window.find('nonsense')) fail('found: nonsense');
if (window.find('nonsense', true)) fail('found: nonsense');
if (window.find('nonsense', false)) fail('found: nonsense');
if (!window.find('for')) fail('not found: for');
if (window.find('for')) fail('found: for');
// Go backwards.
if (!window.find('test', true, true, false)) fail('not found: test');
if (window.find('for', true, true, false)) fail('found: for');
// Backwards and case sensitivity.
if (window.find('this', true, true, false)) fail('found: this');
if (!window.find('This', true, true, false)) fail('not found: This');
// Wrap-around forwards.
if (!window.find('for', true, false, true)) fail('not found: for');
if (!window.find('for', true, false, true)) fail('not found: for');
// Wrap-around backwards.
if (!window.find('for', true, true, true)) fail('not found: for');
if (!window.find('for', true, true, true)) fail('not found: for');
// Case sensitivity, forwards.
if (!window.find('for', true, false, true)) fail('not found: for');
if (!window.find('fOR', false, false, true)) fail('not found: for');
if (!window.find('for', false, false, true)) fail('not found: for');
if (!window.find('for', true, false, true)) fail('not found: for');
if (window.find('FOR', true, false, true)) fail('found: FOR');
if (passed) document.body.innerHTML = "This is a test for window.find(). SUCCESS!";
}
</script>
</head>
<body onload="runTest()">
This is a test for window.find(); the test has not run yet.
</body>
</html>