Index: LayoutTests/http/tests/misc/isindex-with-no-form.html |
diff --git a/LayoutTests/http/tests/misc/isindex-with-no-form.html b/LayoutTests/http/tests/misc/isindex-with-no-form.html |
deleted file mode 100644 |
index adf7d5652464bdadee6af5bc661c5bf2ff0f167a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/misc/isindex-with-no-form.html |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-<html> |
-<head> |
-<script> |
-function test() |
-{ |
- var isindexElm = document.getElementById("isindex"); |
- if (!location.search.length) { |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- isindexElm.value = "This is a test"; |
- isindexElm.focus(); |
- |
- if (window.eventSender) |
- eventSender.keyDown(String.fromCharCode(0x0d)); |
- } else { |
- var expected = "?This+is+a+test"; |
- if (location.search != expected) |
- log("FAIL: Expected \"" + expected + "\" but got \"" + location.search + "\""); |
- else |
- log("PASS"); |
- |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- } |
-} |
- |
-function log(msg) |
-{ |
- document.getElementById("log").appendChild(document.createTextNode(msg + "\n")); |
-} |
- |
-window.onload = test; |
-</script> |
-</head> |
-<body> |
-<p>This page tests that we correctly put the value of an <tt><isindex></tt> element into the form data.</p> |
-<p>If you are running this test by hand, press the enter/return key on your keyboard to submit.</p> |
-<isindex id="isindex"></isindex> |
-<pre id="log"></pre> |
-</body> |
-</html> |