Files
basilisk55/testing/web-platform/tests/html/browsers/windows/support-nested-browsing-contexts.html
T

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>