Status: FAIL | Duration: 1ms | Subtests: 9/18 | 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 |
|---|---|---|
| [data-expected-height] 1 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 2 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 3 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 4 | PASS | |
| [data-expected-height] 5 | PASS | |
| [data-expected-height] 6 | PASS | |
| [data-expected-height] 7 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 8 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 9 | FAIL | assert_equals: data-expected-height expected 100 got 20 |
| [data-expected-height] 10 | PASS | |
| [data-expected-height] 11 | PASS | |
| [data-expected-height] 12 | PASS | |
| [data-expected-height] 13 | FAIL | assert_equals: data-expected-height expected 100 got 120 |
| [data-expected-height] 14 | FAIL | assert_equals: data-expected-height expected 100 got 120 |
| [data-expected-height] 15 | FAIL | assert_equals: data-expected-height expected 100 got 120 |
| [data-expected-height] 16 | PASS | |
| [data-expected-height] 17 | PASS | |
| [data-expected-height] 18 | PASS |
/css/css-sizing/stretch/block-height-001.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-sizing-3/#propdef-width"> <script src='/resources/testharness.js'></script> <script src='/resources/testharnessreport.js'></script> <script src="/resources/check-layout-th.js"></script> <meta name="assert" content="Checks the behaviour of stretch in various configurations."> <style> .content { width: 20px; height: 20px; background: lime; } .tall-content { width: 20px; height: 120px; background: lime; } </style> <body onload="checkLayout('[data-expected-height]')"> <div style="height: 100px;"> <div data-expected-height=100 style="display: block; height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: flex; height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: grid; height: stretch;"> <div class=content></div> </div> </div> <!-- As the height of the container is indefinite, stretch is treated as auto. --> <div style="height: 100%;"> <div data-expected-height=20 style="display: block; height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=20 style="display: flex; height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=20 style="display: grid; height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: block; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: flex; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: grid; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=20 style="display: block; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=20 style="display: flex; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=20 style="display: grid; min-height: stretch;"> <div class=content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: block; max-height: stretch;"> <div class=tall-content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: flex; max-height: stretch;"> <div class=tall-content></div> </div> </div> <div style="height: 100px;"> <div data-expected-height=100 style="display: grid; max-height: stretch;"> <div class=tall-content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=120 style="display: block; max-height: stretch;"> <div class=tall-content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=120 style="display: flex; max-height: stretch;"> <div class=tall-content></div> </div> </div> <div style="height: 100%;"> <div data-expected-height=120 style="display: grid; max-height: stretch;"> <div class=tall-content></div> </div> </div>