| Index: third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/resources/frame-with-plugin-to-navigate.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/resources/frame-with-plugin-to-navigate.html b/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/resources/frame-with-plugin-to-navigate.html
|
| deleted file mode 100644
|
| index 16120a6d3001e805fa3b8604ca8ac584c7aa9799..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/resources/frame-with-plugin-to-navigate.html
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <script src="../../resources/cross-frame-access.js"></script>
|
| - <script>
|
| - window.onload = function()
|
| - {
|
| - document.getElementsByTagName('h4')[0].innerHTML = document.domain;
|
| - window.addEventListener('message', runTest);
|
| - }
|
| -
|
| - runTest = function()
|
| - {
|
| - if (!window.testRunner)
|
| - return;
|
| -
|
| - plg.getURL("navigation-happened.html", "toNavigate");
|
| -
|
| - start = new Date();
|
| - myInterval = setInterval(checkIfDone, 500);
|
| - }
|
| -
|
| - checkIfDone = function()
|
| - {
|
| - var numOpenWindows = testRunner.windowCount();
|
| - var now = new Date();
|
| - if (numOpenWindows == 2) {
|
| - log("Test PASSED");
|
| - clearInterval(myInterval);
|
| - testRunner.notifyDone();
|
| - } else if (now - start > 10000) {
|
| - log('TEST FAILED: Window count ' + numOpenWindows);
|
| - clearInterval(myInterval);
|
| - testRunner.notifyDone();
|
| - }
|
| - }
|
| - </script>
|
| -</head>
|
| -<body>
|
| - <embed name="plg" type="application/x-webkit-test-netscape"></embed>
|
| - <h3>Frame-with-plugin-to-navigate</h3>
|
| - <h4>DOMAIN</h4>
|
| - <pre id='console'></pre>
|
| -</body>
|
| -</html>
|
|
|