wpt / css / css-tables / fractional-percent-width.html

Status: FAIL | Duration: 2ms | Subtests: 0/3 | 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
.cell 1FAILassert_equals: data-expected-client-width expected 2 got 177
.cell 2FAILassert_equals: data-expected-client-width expected 4 got 184
.cell 3FAILassert_equals: data-expected-client-width expected 20 got 184

/css/css-tables/fractional-percent-width.html

<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<link rel="author" title="Jihwan Marc Kim" href="mailto:bluewhale.marc@gmail.com" />
<link rel="help" href="https://crbug.com/1283025" />
<meta name="flags" content="" />
<meta name="assert" content="percent lengths of fractional td width should rendered correctly" />
<style>
  main div {
    position: relative;
    border: 1px solid black;
    width: 400px;
  }
  .cell {
    background-color: skyblue;
    height: 20px;
  }
</style>
<p>
  Tests that percent lengths of fractional td width should rendered correctly
  even it is smaller than 1.
</p>

<hr />
<output id="log"></output>
<main>
  <div>
    <table width="100%">
      <tbody>
        <tr>
          <td class="cell" width="0.5%" data-expected-client-width="2"></td>
          <td>0.5%</td>
        </tr>
      </tbody>
    </table>
    <table width="100%">
      <tbody>
        <tr>
          <td class="cell" width="1%" data-expected-client-width="4"></td>
          <td>1%</td>
        </tr>
      </tbody>
    </table>
    <table width="100%">
      <tbody>
        <tr>
          <td class="cell" width="5%" data-expected-client-width="20"></td>
          <td>5%</td>
        </tr>
      </tbody>
    </table>
  </div>
</main>
<script>
  checkLayout(".cell");
</script>