diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /dom/base/test/iframe1_bug1640766.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream/115.8.0esr.tar.xz firefox-esr-upstream/115.8.0esr.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/iframe1_bug1640766.html')
-rw-r--r-- | dom/base/test/iframe1_bug1640766.html | 20 |
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> |