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

Side by Side Diff: content/test/data/mixed-content/basic-passive-in-iframe-with-strict-blocking.html

Issue 1550723003: Adapt MixedContentChecker for remote frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add some basic browser tests, fix a replication state bug that the test found Created 4 years, 11 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 <!DOCTYPE html>
2 <html>
3 <head>
4 </head>
5 <meta http-equiv="Content-Security-Policy" content="block-all-mixed-content">
6 <body>
7 </body>
8 <script>
9 var url = "https://a.com:" + window.location.port + "/mixed-content/basic-passiv e.html";
10 var iframe = document.createElement("iframe");
11 iframe.src = url;
12 document.body.appendChild(iframe);
13 </script>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698