wpt / css / css-tables / colspan-002.html

Status: FAIL | Duration: 2ms | Subtests: 0/5 | Open test on wpt.live | wpt.fyi

Data from commit:
708eb61 WPT runner: support mismatch reftests and multiple rel=match links (#665) (2026-08-09)

SubtestStatusMessage
td 1FAILassert_equals: data-expected-width expected 75 got 79 assert_equals: data-expected-height expected 75 got 77
td 2FAILassert_equals: data-expected-width expected 75 got 79 assert_equals: data-expected-height expected 75 got 77
td 3FAILassert_equals: data-expected-width expected 50 got 52 assert_equals: data-expected-height expected 50 got 52
td 4FAILassert_equals: data-expected-width expected 50 got 52 assert_equals: data-expected-height expected 50 got 52
td 5FAILassert_equals: data-expected-width expected 50 got 52 assert_equals: data-expected-height expected 50 got 52

/css/css-tables/colspan-002.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449">
<p>There should be five squares.</p>
<table cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="3" style="background:blue;" data-expected-width="75" data-expected-height="75">
      <div style="width:50px; height:75px;"></div>
    </td>
    <td colspan="3" style="background:green;" data-expected-width="75" data-expected-height="75">
      <div style="width:50px; height:75px;"></div>
    </td>
  </tr>
  <tr>
    <td style="background:black;" data-expected-width="50" data-expected-height="50">
      <div style="width:50px; height:50px;"></div>
    </td>
    <td colspan="4" style="background:lime;" data-expected-width="50" data-expected-height="50">
      <div style="width:50px; height:50px;"></div>
    </td>
    <td style="background:hotpink;" data-expected-width="50" data-expected-height="50">
      <div style="width:50px; height:50px;"></div>
    </td>
  </tr>
</table>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<script>
  checkLayout('td')
</script>