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

Unified Diff: LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-formSubmission.html

Issue 311033003: Implementing mixed content for forms posting to insecure location from secure ones (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed the error when action attribute is empty. Created 6 years, 6 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/http/tests/security/mixedContent/resources/frame-with-insecure-formSubmission.html
diff --git a/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-image.html b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-formSubmission.html
similarity index 55%
copy from LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-image.html
copy to LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-formSubmission.html
index ce13691a3ec88c1badc90dd727c07bca6eb754d8..bc20246f973ff499ed73fc98a0cd6ee6ff972fc1 100644
--- a/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-image.html
+++ b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-formSubmission.html
@@ -1,4 +1,6 @@
-<img src="http://127.0.0.1:8080/security/resources/compass.jpg">
+<form action="http://127.0.0.1:8080/security/resources/boring.html"
+ method="post">
+</form>
<script>
window.onload = function() {
if (window.opener)

Powered by Google App Engine
This is Rietveld 408576698