summaryrefslogtreecommitdiffstats
path: root/dom/base/test/iframe1_bug1640766.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/iframe1_bug1640766.html')
-rw-r--r--dom/base/test/iframe1_bug1640766.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/dom/base/test/iframe1_bug1640766.html b/dom/base/test/iframe1_bug1640766.html
new file mode 100644
index 0000000000..51da4f22f0
--- /dev/null
+++ b/dom/base/test/iframe1_bug1640766.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>Iframe 1 for Bug 1640766</title>
+</head>
+<body>
+<div>Iframe 1</div>
+<script type="application/javascript">
+if (parent == window) {
+ let iframe = document.createElement("iframe");
+ iframe.src = "http://example.org/tests/dom/base/test/iframe2_bug1640766.html";
+ document.body.appendChild(iframe);
+} else {
+ window.onload = function() {
+ top.opener.postMessage("ready", "*");
+ };
+}
+</script>
+</body>
+</html>