| Index: LayoutTests/fast/forms/get-forms-to-about-blank.html
|
| diff --git a/LayoutTests/fast/forms/get-forms-to-about-blank.html b/LayoutTests/fast/forms/get-forms-to-about-blank.html
|
| deleted file mode 100644
|
| index 609224d73b8f6b5bcd318085c546e2043150acd0..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/forms/get-forms-to-about-blank.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| -<html>
|
| - <head>
|
| - <script src="../../fast/js/resources/js-test-pre.js"></script>
|
| - <script>
|
| -
|
| -function run() {
|
| - if (window.testRunner) {
|
| - window.testRunner.dumpAsText();
|
| - window.testRunner.waitUntilDone();
|
| - }
|
| -
|
| - description('Submitting a GET form to <about:blank> should redirect the browser to <about:blank?>.');
|
| - document.getElementById('form').submit();
|
| -}
|
| -
|
| -var initialFrameLoaded = false;
|
| -var iframe;
|
| -function onFrameLoad()
|
| -{
|
| - iframe = document.getElementById('iframe');
|
| - if (!initialFrameLoaded) {
|
| - shouldBe('iframe.contentDocument.URL', '"about:blank"');
|
| - initialFrameLoaded = true;
|
| - return;
|
| - }
|
| -
|
| - shouldBe('iframe.contentDocument.URL', '"about:blank?"');
|
| - isSuccessfullyParsed();
|
| - if (window.testRunner)
|
| - window.testRunner.notifyDone();
|
| -}
|
| - </script>
|
| - </head>
|
| - <body onload="run();">
|
| - <iframe id="iframe" name="iframe" onload="onFrameLoad();" style="display: none;"></iframe>
|
| - <form id="form" action="about:blank" method="GET" target="iframe" style="display: none;"></form>
|
| - </body>
|
| -</html>
|
|
|