Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / first-line / stress-4.html
blob566dfd7ebd2188c516b5497e4fceb8f14a89174e
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 #a:first-child::first-line { }
6 </style>
7 <script>
8 function runTest() {
9 document.getElementById("a").removeAttribute('style');
10 document.body.offsetWidth;
11 document.documentElement.className = "";
13 </script>
14 </head><body onload="runTest()">
16 <div style="position:absolute;">
17 <span id="a" style="position:fixed;">
18 <span>
19 <span style="display:table;position:absolute;">
20 </span>
21 </span>
22 Loading this should not crash Mozilla
23 </span>
24 </div>
27 </body></html>