blob: 5b7c89bca995c80fe8211a343256abef32621cf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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-header-group;" id="t"></div>
</body>
</html>
|