mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
13 lines
234 B
HTML
13 lines
234 B
HTML
<body>
|
|
<script>
|
|
var i = document.createElement("iframe");
|
|
i.name = "nested1";
|
|
document.body.appendChild(i);
|
|
|
|
window.opener.postMessage({
|
|
"name": window.name,
|
|
"isTop": window.top === window
|
|
}, "*");
|
|
</script>
|
|
</body>
|