Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
web_platform_tests
/
html
/
browsers
/
windows
/
support-nested-browsing-contexts.html
blob: e92b69d7e73c70a6699262bc823ffe022b4eb0d9 [
file
] [
log
] [
blame
]
<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>