Index: LayoutTests/http/tests/security/cross-frame-access-history-prototype.html |
diff --git a/LayoutTests/http/tests/security/cross-frame-access-history-prototype.html b/LayoutTests/http/tests/security/cross-frame-access-history-prototype.html |
deleted file mode 100644 |
index 9500c35506dd5da4187ffcd6bae67ab8adde69f9..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/security/cross-frame-access-history-prototype.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<script> |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- function log(msg) |
- { |
- document.getElementById("console").appendChild(document.createTextNode(msg + "\n")); |
- } |
- |
- addEventListener("message", function() |
- { |
- if (window.history.fail) { |
- log("FAIL: History object prototype tainted."); |
- } else { |
- log("PASS: History object prototype not tainted."); |
- } |
- |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- }, false); |
-</script> |
-<body> |
- <pre id="console"></pre> |
- <iframe src="http://localhost:8000/security/resources/cross-frame-history-prototype-iframe.html"></iframe> |
-</body> |
-</html> |