Status: FAIL | Duration: 57ms | Subtests: 0/4 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Property block-step-align value 'auto' | FAIL | assert_true: block-step-align doesn't seem to be supported in the computed style expected true got false |
| Property block-step-align value 'center' | FAIL | assert_true: block-step-align doesn't seem to be supported in the computed style expected true got false |
| Property block-step-align value 'start' | FAIL | assert_true: block-step-align doesn't seem to be supported in the computed style expected true got false |
| Property block-step-align value 'end' | FAIL | assert_true: block-step-align doesn't seem to be supported in the computed style expected true got false |
/css/css-rhythm/parsing/block-step-align-computed.html
<!DOCTYPE html> <html> <head> <title>CSS Rhythm: block-step-align computed values</title> <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> <link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-align"> <meta name="assert" content="Checking computed values for block-step-align"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> </head> <body> <div id="target"></div> <script> test_computed_value("block-step-align", "auto"); test_computed_value("block-step-align", "center"); test_computed_value("block-step-align", "start"); test_computed_value("block-step-align", "end"); </script> </body> </html>