Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <script> |
michael@0 | 5 | function f() { |
michael@0 | 6 | document.body.style.fontSize = "20px"; |
michael@0 | 7 | // End the test asynchronously so we get a chance to do a reflow before |
michael@0 | 8 | // that happens. |
michael@0 | 9 | setTimeout("document.documentElement.className = ''", 0); |
michael@0 | 10 | } |
michael@0 | 11 | </script> |
michael@0 | 12 | <style> |
michael@0 | 13 | span { display: inline-block; width: 1em; height: 10px; background: green; } |
michael@0 | 14 | </style> |
michael@0 | 15 | </head> |
michael@0 | 16 | <body onload="f()" style="font-size: 10px"> |
michael@0 | 17 | Test |
michael@0 | 18 | <div style="position: absolute; left: 0; width: 25px; height: 0; top: 0;"> |
michael@0 | 19 | <span></span> |
michael@0 | 20 | <span></span> |
michael@0 | 21 | </div> |
michael@0 | 22 | </body> |
michael@0 | 23 | </html> |