mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
12 lines
234 B
HTML
12 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>
|