67752-1.html (668B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 function f() { 6 document.body.style.fontSize = "20px"; 7 // End the test asynchronously so we get a chance to do a reflow before 8 // that happens. 9 setTimeout("document.documentElement.className = ''", 0); 10 } 11 </script> 12 <style> 13 span { display: inline-block; width: 1em; height: 10px; background: green; } 14 </style> 15 </head> 16 <body onload="f()" style="position: relative; font-size: 10px"> 17 Test 18 <div style="position: absolute; left: 0; width: 25px; height: 0; top: 0;"> 19 <span></span> 20 <span></span> 21 </div> 22 </body> 23 </html>