| Index: chrome/test/data/ssl/redirect_with_mixed_content.html
|
| diff --git a/chrome/test/data/ssl/redirect_with_mixed_content.html b/chrome/test/data/ssl/redirect_with_mixed_content.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c1cac5c1fba5556cc194b948928c0067aaba8580
|
| --- /dev/null
|
| +++ b/chrome/test/data/ssl/redirect_with_mixed_content.html
|
| @@ -0,0 +1,16 @@
|
| +<html>
|
| +<head>
|
| + <title>Page that displays insecure content</title>
|
| + <script>
|
| + function ImageWidth() {
|
| + return document.getElementById("bad_image").width;
|
| + }
|
| + </script>
|
| +</head>
|
| +<body>
|
| + This page contains an image which is served over an http connection,
|
| + causing insecure content (when this page is loaded over https).<br>
|
| + <img id="bad_image" src="http://does-not-exist.test/ssl/google_files/logo.gif" />
|
| +<script>window.location.replace(window.location.search.substring(1));</script>
|
| +</body>
|
| +</html>
|
|
|