colspan-002.html (1271B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449"> 4 <p>There should be five squares.</p> 5 <table cellspacing="0" cellpadding="0"> 6 <tr> 7 <td colspan="3" style="background:blue;" data-expected-width="75" data-expected-height="75"> 8 <div style="width:50px; height:75px;"></div> 9 </td> 10 <td colspan="3" style="background:green;" data-expected-width="75" data-expected-height="75"> 11 <div style="width:50px; height:75px;"></div> 12 </td> 13 </tr> 14 <tr> 15 <td style="background:black;" data-expected-width="50" data-expected-height="50"> 16 <div style="width:50px; height:50px;"></div> 17 </td> 18 <td colspan="4" style="background:lime;" data-expected-width="50" data-expected-height="50"> 19 <div style="width:50px; height:50px;"></div> 20 </td> 21 <td style="background:hotpink;" data-expected-width="50" data-expected-height="50"> 22 <div style="width:50px; height:50px;"></div> 23 </td> 24 </tr> 25 </table> 26 <script src="/resources/testharness.js"></script> 27 <script src="/resources/testharnessreport.js"></script> 28 <script src="/resources/check-layout-th.js"></script> 29 <script> 30 checkLayout('td') 31 </script>