Status: FAIL | Duration: 50ms | Subtests: 0/7 | 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['text-size-adjust'] = "auto" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "none" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "200%" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "100%" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "0%" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "calc(10% + 5%)" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-size-adjust'] = "calc(10% * sibling-index())" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-size-adjust/parsing/text-size-adjust-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Mobile Text Size Adjustment: parsing text-size-adjust with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-size-adjust/#propdef-text-size-adjust"> <meta name="assert" content="text-size-adjust supports the full grammar 'auto | none | <percentage>'."> <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("text-size-adjust", 'auto'); test_valid_value("text-size-adjust", 'none'); test_valid_value("text-size-adjust", '200%'); test_valid_value("text-size-adjust", '100%'); test_valid_value("text-size-adjust", '0%'); test_valid_value("text-size-adjust", 'calc(10% + 5%)', 'calc(15%)'); test_valid_value("text-size-adjust", 'calc(10% * sibling-index())'); </script> </body> </html>