no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 67752-1.html
blob16487b7ff9c51a4a30f3d09d46f90ece34be9a9a
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);
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>