tenfourfox/layout/reftests/bugs/486052-2e.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

18 lines
513 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;"><div style="display: table-row"><div style="display: table-cell" id="t"></div></div></div>
</body>
</html>