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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/mixedContent/active-subresource-in-iframe-blocked.https.html

Issue 1392993002: Strictly block blockable mixed subresources in subframes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 2 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 <script>
5 if (window.testRunner) {
6 // This test checks that active mixed subresources in iframes
7 // are always blocked without asking the embedder. So the test
8 // sets the embedder to allow running insecure content, and
9 // then checks that the content is blocked despite the
10 // embedder's setting.
11 testRunner.setAllowRunningOfInsecureContent(true);
12 testRunner.dumpAsText();
13 }
14 </script>
15 </head>
16 <body>
17 <p>This test passes if the active subresource in the frame below is blocked. </p>
18 <iframe src="resources/frame-with-insecure-css.html"></iframe>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698