mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
21 lines
432 B
HTML
21 lines
432 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var a = document.createElementNS("http://www.w3.org/1999/xhtml", "fieldset");
|
||
|
|
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "legend");
|
||
|
|
var c = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
|
||
|
|
|
||
|
|
a.appendChild(b);
|
||
|
|
a.appendChild(c);
|
||
|
|
a.removeChild(b);
|
||
|
|
c.expandoQ = a;
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|