Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>crbug.com/691968: There should be a blue square below.</p> | |
| 3 <table id="table" style="border-spacing:0; width:100px; height:200px; background :blue;" data-expected-height=100> | |
| 4 <tr> | |
| 5 <td></td> | |
| 6 </tr> | |
| 7 </table> | |
| 8 <div id="results"></div> | |
| 9 <script src="../../resources/check-layout.js"></script> | |
|
mstensho (USE GERRIT)
2017/02/20 13:01:30
Better use check-layout-th.js, to eliminate the -e
| |
| 10 <script> | |
| 11 document.body.offsetTop; | |
| 12 document.getElementById("table").style.height = "100px"; | |
| 13 checkLayout('#table', results); | |
| 14 </script> | |
| OLD | NEW |