Status: FAIL | Duration: 2ms | Subtests: 1/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)
| Subtest | Status | Message |
|---|---|---|
| .item 1 | PASS | |
| .item 2 | FAIL | assert_equals: data-offset-x expected 50 got 100 |
| .item 3 | FAIL | assert_equals: data-offset-x expected 0 got 100 |
/css/css-align/blocks/justify-self-text-align-2.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-align/#justify-self-property"> <meta name="assert" content="text-align:-webkit-*, justify-items, justify-self work correctly in tandem when all are specified" /> <style> .container { width: 200px; position: relative; outline: solid; justify-items: center; text-align: -webkit-right; } .item { background: lightblue; width: 100px; height: 100px; outline: solid; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <div class="container"> <div class="item" style="justify-self: normal;" data-offset-x="100"> normal </div> <div class="item" style="justify-self: auto;" data-offset-x="50"> auto </div> <div class="item" style="justify-self: left;" data-offset-x="0"> left </div> </div> <script> checkLayout('.item'); </script>