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

Side by Side Diff: LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-image.html

Issue 439223005: Resources restored from CSS cache should be able to trigger InsecureContent messages (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: adjust shouldBlockFetch call to current code Created 6 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 <!-- External css file needed to trigger a css cache image load -->
5 <link href="fetch-insecure-css-image.css" rel="stylesheet" type="text/css" />
6 </head>
7 <body>
8 <img id="insecure-css-img">
9 <script>
10 window.addEventListener("load", function() {
11 if (parent.window)
12 parent.window.postMessage('done', '*');
13 }, false);
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698