Status: FAIL | Duration: 4ms | Subtests: 2/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 |
|---|---|---|
| .box 1 | FAIL | assert_equals: data-expected-margin-right expected 35 got 15 |
| .box 2 | PASS | |
| .box 3 | FAIL | assert_equals: data-expected-margin-right expected 50 got 30 |
| .box 4 | FAIL | assert_equals: data-expected-margin-right expected 35 got 15 |
| .box 5 | PASS | |
| .box 6 | FAIL | assert_equals: data-expected-margin-right expected 50 got 30 |
/css/CSS2/normal-flow/auto-margins-used-values-with-floats.tentative.html
<!DOCTYPE html> <link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#blockwidth"> <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/9174"> <meta name="viewport" content="width=device-width,initial-scale=1"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <style> .container { display: flow-root; width: 100px; padding: 5px; box-sizing: border-box; } .box { display: flow-root; width: 40px; height: 10px; background: lime; } .float { float: right; width: 20px; height: 40px; background: cyan; } </style> <body onload="checkLayout('.box')"> <div class="container"> <div class="float"></div> <div class="box" style="margin: auto;" data-expected-margin-left="15" data-expected-margin-right="35"></div> <div class="box" style="margin-left: auto;" data-expected-margin-left="30" data-expected-margin-right="0"></div> <div class="box" style="margin-right: auto;" data-expected-margin-left="0" data-expected-margin-right="50"></div> </div> <div class="container" style="direction: rtl;"> <div class="float"></div> <div class="box" style="margin: auto;" data-expected-margin-left="15" data-expected-margin-right="35"></div> <div class="box" style="margin-left: auto;" data-expected-margin-left="30" data-expected-margin-right="0"></div> <div class="box" style="margin-right: auto;" data-expected-margin-left="0" data-expected-margin-right="50"></div> </div> </body>