mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
20 lines
340 B
HTML
20 lines
340 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function init() {
|
||
|
|
window.removeEventListener("load", init, false);
|
||
|
|
|
||
|
|
var fr = document.getElementsByTagName("iframe")[0];
|
||
|
|
var b = fr.contentDocument.body;
|
||
|
|
|
||
|
|
fr.parentNode.removeChild(fr);
|
||
|
|
b.parentNode;
|
||
|
|
}
|
||
|
|
|
||
|
|
window.addEventListener("load", init, false);
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</head><body><iframe></iframe></body></html>
|