mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
516 B
HTML
18 lines
516 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-header-group;"><div style="display: table-row"><div style="display: table-cell" id="t"></div></div></div>
|
||
|
</body>
|
||
|
</html>
|