| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head><title>Page that displays insecure content</title> | 2 <head><title>Page that displays insecure content</title> |
| 3 <script> | 3 <script> |
| 4 function ImageWidth() { | 4 function ImageWidth() { |
| 5 return document.getElementById("bad_image").width; | 5 return document.getElementById("bad_image").width; |
| 6 } | 6 } |
| 7 </script> | 7 </script> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 This page contains an image which is served over an http connection, | 10 This page contains an image which is served over an http connection, |
| 11 causing insecure content (when this page is loaded over https).<br> | 11 causing insecure content (when this page is loaded over https).<br> |
| 12 <img id="bad_image" src="http://localhost:1337/files/ssl/google_files/logo.gif"/
> | 12 <img id="bad_image" src="http://REPLACE_WITH_HOST_AND_PORT/files/ssl/google_file
s/logo.gif"/> |
| 13 | 13 |
| 14 </body> | 14 </body> |
| 15 </html> | 15 </html> |
| OLD | NEW |