Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / tables / crashtests / 282175-1.html
blob27d4f86e8c26d1a0e412fa43f1b4ab8a85a2585c
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>bug 282175</title>
5 <script type="text/javascript">
6 function modifyPosition2()
8 document.getElementById("table").style.position = "inherit";
9 document.body.offsetHeight;
10 document.getElementById("tr").style.position = "inherit";
11 document.getElementById("table").style.position = "fixed";
12 document.body.offsetHeight;
13 document.getElementById("table").style.position = "inherit";
15 </script>
16 </head>
17 <body onload="modifyPosition2()">
18 <table style="position: fixed" id="table">
19 <tbody style="position: inherit">
20 <tr style="position: fixed" id="tr">
21 <td>0.2 miles</td>
22 </tr>
23 </tbody>
24 </table>
25 </body>
26 </html>