Files
servo/tests/wpt/web-platform-tests/html/browsers/windows/support-nested-browsing-contexts.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>