Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: LayoutTests/fast/forms/get-forms-to-about-blank.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 &lt;about:blank&gt; should redirect the browser to &lt;about:blank?&gt;.');
- 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>

Powered by Google App Engine
This is Rietveld 408576698