Status: FAIL | Duration: 1ms | Subtests: 0/3 | Open test on wpt.live | wpt.fyi
Data from commit:
1efe22d Fix duplicate table cell padding with float layout (#675) (2026-08-10)
| Subtest | Status | Message |
|---|---|---|
| .grid-lanes 1 | FAIL | assert_equals: data-offset-x expected 200 got 0 assert_equals: data-expected-width expected 100 got 300 |
| .grid-lanes 2 | FAIL | assert_equals: data-offset-x expected 200 got 0 assert_equals: data-expected-width expected 100 got 300 |
| .grid-lanes 3 | FAIL | assert_equals: data-offset-x expected 200 got 0 assert_equals: data-expected-width expected 100 got 300 |
/css/css-grid/grid-lanes/track-sizing/auto-repeat/column-auto-repeat-009.html
<!DOCTYPE html> <title>Auto repeat tracks and percentage min sizes</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <meta name="assert" content="This test checks that auto repeat tracks use percentage min size when available to compute the number of tracks."> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <style> .grid-lanes { position: relative; display: grid-lanes; grid-template-columns: repeat(auto-fill, 100px); min-width: 50%; min-height: 80%; float: left; background: pink; } .wrapper { width: 600px; height: 250px; } .item { background: lime; /* Place item on the last column. */ grid-column: -2; width: 100%; height: 200px; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <body onload="checkLayout('.grid-lanes');"> <div id="log"></div> <div class="wrapper"> <div class="grid-lanes" style="width: 200px; height: 100px;" data-expected-width="300" data-expected-height="200"> <div class="item" data-offset-x="200" data-offset-y="0" data-expected-width="100" data-expected-height="200"></div> </div> </div> <div class="wrapper"> <div class="grid-lanes" style="width: min-content; height: min-content;" data-expected-width="300" data-expected-height="200"> <div class="item" data-offset-x="200" data-offset-y="0" data-expected-width="100" data-expected-height="200"></div> </div> </div> <div class="wrapper"> <div class="grid-lanes" style="width: max-content; height: max-content;" data-expected-width="300" data-expected-height="200"> <div class="item" data-offset-x="200" data-offset-y="0" data-expected-width="100" data-expected-height="200"></div> </div> </div> </body>