282175-1.html (912B)
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() 7 { 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"; 14 } 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>