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