summaryrefslogtreecommitdiffstats
path: root/layout/style/test/bug1382568-iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/style/test/bug1382568-iframe.html')
-rw-r--r--layout/style/test/bug1382568-iframe.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/style/test/bug1382568-iframe.html b/layout/style/test/bug1382568-iframe.html
new file mode 100644
index 0000000000..b1448703e5
--- /dev/null
+++ b/layout/style/test/bug1382568-iframe.html
@@ -0,0 +1,8 @@
+<!doctype html>
+<iframe src="http://example.com/doesnt-matter-because-it-gets-blocked-due-to-mixed-content"></iframe>
+<script>
+window.addEventListener('load', function(){
+ window[0].document.body.innerText;
+ window.parent.postMessage({ result: "ok" }, "*");
+});
+</script>