| Index: LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-image.html
|
| diff --git a/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-image.html b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-image.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..829fbccc165e041824275f06b8c9391fc963fdea
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-image.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<!-- External css file needed to trigger a css cache image load -->
|
| +<link href="fetch-insecure-css-image.css" rel="stylesheet" type="text/css" />
|
| +</head>
|
| +<body>
|
| +<img id="insecure-css-img">
|
| +<script>
|
| +window.addEventListener("load", function() {
|
| + if (parent.window)
|
| + parent.window.postMessage('done', '*');
|
| +}, false);
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|