Dactyloidae/testing/web-platform/tests/html/browsers/windows/support-nested-browsing-contexts.html

12 lines
234 B
HTML
Raw Normal View History

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