Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / ssl / page_with_unsafe_contents.html
blob8847fe9b934b17ed67d66b01222cb88bfeb0a52c
1 <html>
2 <head><title>Page with unsafe contents</title>
3 <script>
4 var foo = null;
6 function IsFooSet() {
7 return foo != null;
10 function ImageWidth() {
11 return document.getElementById("bad_image").width;
13 </script>
14 <script src="https://REPLACE_WITH_HOST_AND_PORT/files/ssl/set_foo.js"></script>
15 </head>
17 <body>
18 This page contains an image which is served over an insecure HTTPS connection...<br>
19 <img id="bad_image" src="https://REPLACE_WITH_HOST_AND_PORT/files/ssl/google_files/logo.gif"/>
21 <br><br>
22 And an IFrame served over insecure HTTPS...<br>
23 <iframe id="bad_iframe" src="https://REPLACE_WITH_HOST_AND_PORT/files/ssl/bad_iframe.html"/>
25 <br><br>
26 And even worse, some JavaScript served over insecure HTTPS...<br>
29 </body>
30 </html>