| Index: LayoutTests/http/tests/security/frameNavigation/opener.html
|
| diff --git a/LayoutTests/http/tests/security/frameNavigation/opener.html b/LayoutTests/http/tests/security/frameNavigation/opener.html
|
| deleted file mode 100644
|
| index 5004c90ec4119e5a8e3cd680b2603d817f7dacd6..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/security/frameNavigation/opener.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| - testRunner.setCanOpenWindows();
|
| -}
|
| -
|
| -function log(msg) {
|
| - var div = document.createElement("div");
|
| - div.appendChild(document.createTextNode(msg));
|
| - document.getElementById("console").appendChild(div);
|
| -}
|
| -
|
| -window.addEventListener("message", function(e) {
|
| - if (e.data == "ready") {
|
| - win.location = "resources/pass.html";
|
| - } else if (e.data == "pass") {
|
| - win.document.body.innerHTML = "Frame navigated back on-domain";
|
| - win.close();
|
| - log("PASS");
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - }
|
| -}, false);
|
| -
|
| -window.onload = function() {
|
| - win = window.open("http://localhost:8000/security/frameNavigation/resources/ready.html", "targetFrame");
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -<body>
|
| -<div id="console"></div>
|
| -</body>
|
| -</html>
|
| -
|
|
|