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

Unified Diff: chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html

Issue 23513057: Add missing POST method to popup test HTML (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: again Created 7 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html
diff --git a/chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html b/chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html
index 08c190bbf57ce87ef0a1b05e278186142ced4523..29ed23d3c61a1c1b45e5a4db6c302d93f7fed27a 100644
--- a/chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html
+++ b/chrome/test/data/popup_blocker/popup-blocked-to-post-blank.html
@@ -11,8 +11,8 @@ function test() {
</head>
<body onload="test()">
If the POST pop-up was not blocked then there will be an warning message displayed in a new tab. Otherwise, the test passes.
-<form id="form" action="data:text/html,<title>Popup Success!</title>you should not see this message if popup blocker is enabled" target="_blank">
+<form id="form" method="post" action="data:text/html,<title>Popup Success!</title>you should not see this message if popup blocker is enabled" target="_blank">
<input type="submit" value="Submit to new window"/>
</form>
</body>
-</html>
+</html>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698