mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
18 lines
436 B
HTML
18 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>
|