mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 10:53:11 +09:00
19 lines
395 B
HTML
19 lines
395 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var a = document.documentElement;
|
|
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
|
|
b.setAttributeNS(null, "style", "-moz-column-width: 20em;");
|
|
a.innerHTML = "<frameset>";
|
|
b.innerHTML = "<dd><marquee>x";
|
|
document.removeChild(a);
|
|
document.appendChild(b);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|