OLD | NEW |
---|---|
(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> | |
OLD | NEW |