Status: FAIL | Duration: 2ms | Subtests: 6/16 | 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 |
|---|---|---|
| .item 1 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 2 | FAIL | assert_equals: data-offset-y expected 10 got 0 |
| .item 3 | PASS | |
| .item 4 | PASS | |
| .item 5 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 6 | PASS | |
| .item 7 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 8 | FAIL | assert_equals: data-expected-height expected 40 got 20 |
| .item 9 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 10 | FAIL | assert_equals: data-offset-y expected 10 got 0 |
| .item 11 | PASS | |
| .item 12 | PASS | |
| .item 13 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 14 | PASS | |
| .item 15 | FAIL | assert_equals: data-offset-y expected 20 got 0 |
| .item 16 | FAIL | assert_equals: data-expected-height expected 40 got 20 |
/css/css-align/blocks/justify-self-vlr-rtl-htb.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-align-3/#justify-abspos"> <style> body { margin: 0; } .container { writing-mode: vertical-lr; direction: rtl; display: inline-block; position: relative; margin: 20px; border: solid 4px; width: 40px; height: 40px; } .item { writing-mode: horizontal-tb; direction: ltr; background: green; } .item::before { width: 20px; height: 20px; content: ''; display: block; } .rtl { direction: rtl; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <body onload="checkLayout('.item')"> <div class="container"> <div class="item" style="justify-self: start;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item" style="justify-self: center;" data-expected-height="20" data-offset-y="10"></div> </div> <div class="container"> <div class="item" style="justify-self: end;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item" style="justify-self: self-start;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item" style="justify-self: self-end;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item" style="justify-self: left;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item" style="justify-self: right;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item" style="justify-self: stretch;" data-expected-height="40" data-offset-y="0"></div> </div> <!-- RTL --> <br> <div class="container"> <div class="item rtl" style="justify-self: start;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: center;" data-expected-height="20" data-offset-y="10"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: end;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: self-start;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: self-end;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: left;" data-expected-height="20" data-offset-y="0"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: right;" data-expected-height="20" data-offset-y="20"></div> </div> <div class="container"> <div class="item rtl" style="justify-self: stretch;" data-expected-height="40" data-offset-y="0"></div> </div>