1
0
Fork 0
firefox/dom/base/test/iframe1_bug1640766.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
450 B
HTML

<!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>