Chromium Code Reviews| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 window.onload = function() { | |
| 4 document.body.offsetTop; | |
| 5 document.getElementById('elm').style.display = 'table-cell'; | |
| 6 } | |
| 7 </script> | |
| 8 <p>There should be a blue rectangle below.</p> | |
| 9 <table cellpadding="0" cellspacing="0"> | |
| 10 <tr> | |
| 11 <td style="color:blue; background:blue;">AAAAAAAAAAAAAA</td> | |
| 12 </tr> | |
| 13 <tr> | |
| 14 <td id="elm" style="display:table-row; color:blue; background:blue;">AAA AAAAAAAAAAA</td> | |
| 15 </tr> | |
| 16 </table> | |
| OLD | NEW |