Status: FAIL | Duration: 61ms | Subtests: 0/17 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| table | FAIL | assert_equals: offsetWidth expected 70 but got 334 |
| colgroup | FAIL | assert_equals: offsetTop expected 18 but got 0 |
| col | FAIL | assert_equals: offsetTop expected 18 but got 0 |
| col2 | FAIL | assert_equals: offsetTop expected 75 but got 0 |
| colgroup2 | FAIL | assert_equals: offsetTop expected 132 but got 0 |
| col3 | FAIL | assert_equals: offsetTop expected 132 but got 0 |
| rowgroup | FAIL | assert_equals: offsetTop expected 18 but got 0 |
| row | FAIL | assert_equals: offsetTop expected 18 but got 0 |
| cell | FAIL | assert_equals: offsetLeft expected 8 but got 18 |
| content | FAIL | assert_equals: offsetLeft expected 8 but got 18 |
| cell2 | FAIL | assert_equals: offsetTop expected 75 but got 18 |
| content2 | FAIL | assert_equals: offsetTop expected 75 but got 18 |
| cell3 | FAIL | assert_equals: offsetTop expected 132 but got 18 |
| content3 | FAIL | assert_equals: offsetTop expected 132 but got 18 |
| row2 | FAIL | assert_equals: offsetTop expected 218 but got 0 |
| cell4 | FAIL | assert_equals: offsetTop expected 218 but got 75 |
| content4 | FAIL | assert_equals: offsetTop expected 218 but got 75 |
/css/css-break/table/table-parts-offsets-vertical-rl.tentative.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com"> <link rel="help" href="https://www.w3.org/TR/css-break-3/#box-splitting"> <link rel="help" href="https://www.w3.org/TR/cssom-view/#extensions-to-the-htmlelement-interface"> <div style="column-width:200px; column-gap: 0; column-fill:auto; width:70px; height:600px; background:yellow; writing-mode: vertical-rl;"> <div id="table" style="display:table; border-spacing:7px; border:2px solid; padding:1px;"> <div id="colgroup" style="display:table-column-group;"> <div id="col" style="display:table-column;"></div> <div id="col2" style="display:table-column;"></div> </div> <div id="colgroup2" style="display:table-column-group;"> <div id="col3" style="display:table-column;"></div> </div> <div id="rowgroup" style="display:table-row-group;"> <div id="row" style="display:table-row;"> <div id="cell" style="display:table-cell;"> <div id="content" style="width:100px; height:50px; background:blue;"></div> </div> <div id="cell2" style="display:table-cell;"> <div id="content2" style="width:100px; height:50px; background:blue;"></div> </div> <div id="cell3" style="display:table-cell;"> <div id="content3" style="width:100px; height:50px; background:blue;"></div> </div> </div> <div id="row2" style="display:table-row;"> <div id="cell4" style="display:table-cell;"> <div id="content4" style="width:50px; height: 50px; background: blue;"></div> </div> </div> </div> </div> </div> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script> test(() => { assert_equals(table.offsetTop, 8, "offsetTop"); assert_equals(table.offsetLeft, 8, "offsetLeft"); assert_equals(table.offsetWidth, 70, "offsetWidth"); assert_equals(table.offsetHeight, 584, "offsetHeight"); }, "table"); test(() => { assert_equals(colgroup.offsetTop, 18, "offsetTop"); assert_equals(colgroup.offsetLeft, 8, "offsetLeft"); assert_equals(colgroup.offsetWidth, 70, "offsetWidth"); assert_equals(colgroup.offsetHeight, 507, "offsetHeight"); }, "colgroup"); test(() => { assert_equals(col.offsetTop, 18, "offsetTop"); assert_equals(col.offsetLeft, 8, "offsetLeft"); assert_equals(col.offsetWidth, 70, "offsetWidth"); assert_equals(col.offsetHeight, 450, "offsetHeight"); }, "col"); test(() => { assert_equals(col2.offsetTop, 75, "offsetTop"); assert_equals(col2.offsetLeft, 8, "offsetLeft"); assert_equals(col2.offsetWidth, 70, "offsetWidth"); assert_equals(col2.offsetHeight, 450, "offsetHeight"); }, "col2"); test(() => { assert_equals(colgroup2.offsetTop, 132, "offsetTop"); assert_equals(colgroup2.offsetLeft, 8, "offsetLeft"); assert_equals(colgroup2.offsetWidth, 70, "offsetWidth"); assert_equals(colgroup2.offsetHeight, 450, "offsetHeight"); }, "colgroup2"); test(() => { assert_equals(col3.offsetTop, 132, "offsetTop"); assert_equals(col3.offsetLeft, 8, "offsetLeft"); assert_equals(col3.offsetWidth, 70, "offsetWidth"); assert_equals(col3.offsetHeight, 450, "offsetHeight"); }, "col3"); test(() => { assert_equals(rowgroup.offsetTop, 18, "offsetTop"); assert_equals(rowgroup.offsetLeft, 8, "offsetLeft"); assert_equals(rowgroup.offsetWidth, 70, "offsetWidth"); assert_equals(rowgroup.offsetHeight, 564, "offsetHeight"); }, "rowgroup"); test(() => { assert_equals(row.offsetTop, 18, "offsetTop"); assert_equals(row.offsetLeft, 8, "offsetLeft"); assert_equals(row.offsetWidth, 70, "offsetWidth"); assert_equals(row.offsetHeight, 364, "offsetHeight"); }, "row"); test(() => { assert_equals(cell.offsetTop, 18, "offsetTop"); assert_equals(cell.offsetLeft, 8, "offsetLeft"); assert_equals(cell.offsetWidth, 70, "offsetWidth"); assert_equals(cell.offsetHeight, 250, "offsetHeight"); }, "cell"); test(() => { assert_equals(content.offsetTop, 18, "offsetTop"); assert_equals(content.offsetLeft, 8, "offsetLeft"); assert_equals(content.offsetWidth, 70, "offsetWidth"); assert_equals(content.offsetHeight, 250, "offsetHeight"); }, "content"); test(() => { assert_equals(cell2.offsetTop, 75, "offsetTop"); assert_equals(cell2.offsetLeft, 8, "offsetLeft"); assert_equals(cell2.offsetWidth, 70, "offsetWidth"); assert_equals(cell2.offsetHeight, 250, "offsetHeight"); }, "cell2"); test(() => { assert_equals(content2.offsetTop, 75, "offsetTop"); assert_equals(content2.offsetLeft, 8, "offsetLeft"); assert_equals(content2.offsetWidth, 70, "offsetWidth"); assert_equals(content2.offsetHeight, 250, "offsetHeight"); }, "content2"); test(() => { assert_equals(cell3.offsetTop, 132, "offsetTop"); assert_equals(cell3.offsetLeft, 8, "offsetLeft"); assert_equals(cell3.offsetWidth, 70, "offsetWidth"); assert_equals(cell3.offsetHeight, 250, "offsetHeight"); }, "cell3"); test(() => { assert_equals(content3.offsetTop, 132, "offsetTop"); assert_equals(content3.offsetLeft, 8, "offsetLeft"); assert_equals(content3.offsetWidth, 70, "offsetWidth"); assert_equals(content3.offsetHeight, 250, "offsetHeight"); }, "content3"); test(() => { assert_equals(row2.offsetTop, 218, "offsetTop"); assert_equals(row2.offsetLeft, 8, "offsetLeft"); assert_equals(row2.offsetWidth, 70, "offsetWidth"); assert_equals(row2.offsetHeight, 364, "offsetHeight"); }, "row2"); test(() => { assert_equals(cell4.offsetTop, 218, "offsetTop"); assert_equals(cell4.offsetLeft, 8, "offsetLeft"); assert_equals(cell4.offsetWidth, 70, "offsetWidth"); assert_equals(cell4.offsetHeight, 250, "offsetHeight"); }, "cell4"); test(() => { assert_equals(content4.offsetTop, 218, "offsetTop"); assert_equals(content4.offsetLeft, 8, "offsetLeft"); assert_equals(content4.offsetWidth, 70, "offsetWidth"); assert_equals(content4.offsetHeight, 250, "offsetHeight"); }, "content4"); </script>