mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
17 lines
436 B
HTML
17 lines
436 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var d = document.createElement("div");
|
|
d.textContent = "Test";
|
|
d.style.top = d.style.left = 0;
|
|
d.style.position = "absolute";
|
|
document.getElementById("t").appendChild(d);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<div style="position: relative; display: table-row-group;" id="t"></div>
|
|
</body>
|
|
</html>
|