Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <style> | |
| 3 td { | |
| 4 width: 50px; | |
| 5 height: 50px; | |
| 6 padding: 0px; | |
| 7 } | |
| 8 </style> | |
| 9 <script src="../../resources/check-layout.js"></script> | |
| 10 <script src="../../resources/run-after-layout-and-paint.js"></script> | |
| 11 <script type="text/javascript"> | |
| 12 runAfterLayoutAndPaint(function() { | |
| 13 document.getElementById("row").style.borderWidth = "4px"; | |
| 14 checkLayout("table"); | |
| 15 }, true); | |
| 16 </script> | |
| 17 There should be a square with a 4px blue border. | |
| 18 <table style="border-collapse:collapse" data-expected-width=58 data-expected-hei ght=58> | |
| 19 <tr style="border:18px solid lightblue" id="row"> | |
| 20 <td /> | |
| 21 </tr> | |
| 22 </table> | |
| OLD | NEW |