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 |
|---|---|---|
| e.style['ruby-align'] = "start" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['ruby-align'] = "center" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['ruby-align'] = "space-between" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['ruby-align'] = "space-around" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-ruby/parsing/ruby-align-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Ruby Layout: parsing ruby-align with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-ruby-1/#ruby-align-property"> <meta name="assert" content="ruby-align supports the full grammar 'start | center | space-between | space-around'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("ruby-align", "start"); test_valid_value("ruby-align", "center"); test_valid_value("ruby-align", "space-between"); test_valid_value("ruby-align", "space-around"); </script> </body> </html>