mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
17 lines
291 B
HTML
17 lines
291 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom() {
|
||
|
|
var table = document.createElement("table");
|
||
|
|
var cap = document.createElement("caption");
|
||
|
|
cap.appendChild(table)
|
||
|
|
table.caption = cap;
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|