dynamic_col_width_crash.html (261B)
1 <!DOCTYPE html> 2 <table rules="cols"> 3 <caption>caption</caption> 4 <col id="target" style="width:50%"/> 5 <tbody> 6 <tr></tr> 7 </tbody> 8 </table> 9 <script> 10 document.body.offsetTop; 11 document.getElementById('target').style.width = 'auto'; 12 </script>