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

Side by Side Diff: LayoutTests/http/tests/security/mixedContent/resources/frame-with-invisible-DOM-with-insecure-form.html

Issue 431273006: Fixing the case where mixed content checking for insecure form submission in secure origins is brea… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing adamk comments Created 6 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <script>
2 function load_content() {
3 var invisible_doc = document.implementation.createHTMLDocument("");
4 invisible_doc.body.innerHTML = '<html><body><form action="http://127.0.0.1:8 080/security/resources/boring.html" method="post"></form></body></html>';
5 }
6
7 window.addEventListener("DOMContentLoaded", function listener() { load_content() ; }, false);
8 </script>
9
10 <script>
11 window.onload = function() {
12 if (window.opener)
13 window.opener.postMessage('done', '*');
14 };
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698