blob: 51da4f22f03314d4495d3cb751ae0bb703135341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
|