| Index: chrome/test/data/ssl/page_with_dynamic_unsafe_image.html
|
| diff --git a/chrome/test/data/ssl/page_with_dynamic_unsafe_image.html b/chrome/test/data/ssl/page_with_dynamic_unsafe_image.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d232531577af2d1bd5813631d428e4be7d0e85f8
|
| --- /dev/null
|
| +++ b/chrome/test/data/ssl/page_with_dynamic_unsafe_image.html
|
| @@ -0,0 +1,13 @@
|
| +<html>
|
| +<head><title>Page with unsafe image loaded dynamically</title>
|
| +<script>
|
| + var url = "https://REPLACE_WITH_HOST_AND_PORT/ssl/google_files/logo.gif";
|
| +
|
| + function AddImage() {
|
| + var img = document.createElement("img");
|
| + img.src = url;
|
| + document.body.appendChild(img);
|
| + }
|
| +</script>
|
| +<body></body>
|
| +</html>
|
|
|