Status: FAIL | Duration: 59ms | Subtests: 0/3 | 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-overhang'] = "auto" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['ruby-overhang'] = "none" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['ruby-overhang'] = "spaces" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-ruby/parsing/ruby-overhang-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Ruby Layout: parsing ruby-overhang with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-ruby-1/#propdef-ruby-overhang"> <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> <meta name="assert" content="ruby-overhang supports the full grammar 'auto | spaces'."> <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-overhang", "auto"); test_valid_value("ruby-overhang", "none", "spaces"); test_valid_value("ruby-overhang", "spaces"); </script> </body> </html>