Bug 458160 - Enable downloadable .otf fonts under Windows. r=roc, sr=vlad.
[wine-gecko.git] / layout / reftests / first-line / stress-4.html
blob0dba41b39d84ac47132170e65102e1ddabea639e
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 #a:first-child::first-line { }
6 body { visibility: hidden; }
7 </style>
8 <script>
9 function runTest() {
10 document.getElementById("a").removeAttribute('style');
11 document.body.offsetWidth;
12 document.documentElement.className = "";
14 </script>
15 </head><body onload="runTest()">
17 <div style="position:absolute;">
18 <span id="a" style="position:fixed;">
19 <span>
20 <span style="display:table;position:absolute;">
21 </span>
22 </span>
23 Loading this should not crash Mozilla
24 </span>
25 </div>
28 </body></html>