1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/486052-2c.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <script> 1.8 + function doTest() { 1.9 + var d = document.createElement("div"); 1.10 + d.textContent = "Test"; 1.11 + d.style.top = d.style.left = 0; 1.12 + d.style.position = "absolute"; 1.13 + document.getElementById("t").appendChild(d); 1.14 + } 1.15 + </script> 1.16 + </head> 1.17 + <body onload="doTest()"> 1.18 + <div style="position: relative; display: table-footer-group;" id="t"></div> 1.19 + </body> 1.20 +</html>