1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<!DOCTYPE html> <html> <head> <title>#980223 testcase</title> </head> <body> <table> <tbody> <tr> <td style="position:relative;">Test table cell</td> </tr> </tbody> </table> <script> document.body.offsetHeight; document.querySelector('tbody').innerHTML = ''; document.body.offsetHeight; </script> </body> </html>