Status: FAIL | Duration: 2ms | Subtests: 0/6 | 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)
| Subtest | Status | Message |
|---|---|---|
| #target > div 1 | FAIL | assert_equals: data-offset-x expected 120 got 0 |
| #target > div 2 | FAIL | assert_equals: data-offset-x expected 105 got 91 |
| #target > div 3 | FAIL | assert_equals: data-offset-x expected 126 got 167 |
| #target > div 4 | FAIL | assert_equals: data-offset-x expected 20 got 228 |
| #target > div 5 | FAIL | assert_equals: data-offset-x expected 35 got 299 |
| #target > div 6 | FAIL | assert_equals: data-offset-x expected 42 got 375 |
/css/css-flexbox/alignment/flex-align-baseline-003.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-rules"> <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#cross-alignment"> <style> #target { display: flex; align-items: last baseline; width: 200px; border: solid 3px; position: relative; writing-mode: vertical-rl; } #target > :nth-child(1) { background: lime; margin-right: 20px; padding-right: 20px; font-size: 20px; line-height: 20px; align-self: first baseline; writing-mode: vertical-rl; } #target > :nth-child(2) { background: hotpink; font-size: 30px; line-height: 30px; writing-mode: vertical-lr; } #target > :nth-child(3) { background: papayawhip; font-size: 16px; line-height: 16px; writing-mode: vertical-lr; } #target > :nth-child(4) { background: orange; margin-left: 20px; padding-left: 20px; font-size: 20px; line-height: 20px; align-self: first baseline; writing-mode: vertical-lr; } #target > :nth-child(5) { background: cyan; font-size: 30px; line-height: 30px; writing-mode: vertical-rl; } #target > :nth-child(6) { background: papayawhip; font-size: 16px; line-height: 16px; writing-mode: vertical-rl; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <body onload="checkLayout('#target > div')"> <div id="target"> <div data-offset-x="120">line1<br>line2</div> <div data-offset-x="105">line1<br>line2</div> <div data-offset-x="126">line1<br>line2</div> <div data-offset-x="20">line1<br>line2</div> <div data-offset-x="35">line1<br>line2</div> <div data-offset-x="42">line1<br>line2</div> </div>