Index: LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-font.html |
diff --git a/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-font.html b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-font.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9b0712638c30e3d3b9bfe7f355d323d3fd652496 |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-font.html |
@@ -0,0 +1,14 @@ |
+<style> |
+ @font-face { |
+ font-family: "AhemTest"; |
+ src: url(http://127.0.0.1:8080/resources/Ahem.ttf); |
+ } |
+ p { font-family: AhemTest; } |
+</style> |
+<p>Yay!</p> |
+<script> |
+window.onload = function() { |
+ if (window.opener) |
+ window.opener.postMessage('done', '*'); |
+}; |
+</script> |