mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
18 lines
322 B
HTML
18 lines
322 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var a = document.createElementNS("http://www.w3.org/1999/xhtml", "datalist");
|
||
|
|
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "option");
|
||
|
|
|
||
|
|
a.appendChild(b);
|
||
|
|
b.expando = a.options;
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|