Status: FAIL | Duration: 65ms | Subtests: 0/6 | 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 text-size-adjust value 'auto' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
| Property text-size-adjust value 'none' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
| Property text-size-adjust value '200%' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
| Property text-size-adjust value '100%' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
| Property text-size-adjust value '0%' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
| Property text-size-adjust value 'calc(10% * sibling-index())' | FAIL | assert_true: text-size-adjust doesn't seem to be supported in the computed style expected true got false |
/css/css-size-adjust/parsing/text-size-adjust-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Mobile Text Size Adjustment: getComputedStyle().text-size-adjust</title> <link rel="help" href="https://drafts.csswg.org/css-size-adjust/#propdef-text-size-adjust"> <meta name="assert" content="text-size-adjust computed value is as specified."> <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("text-size-adjust", 'auto'); test_computed_value("text-size-adjust", 'none', '100%'); test_computed_value("text-size-adjust", '200%'); test_computed_value("text-size-adjust", '100%'); test_computed_value("text-size-adjust", '0%'); test_computed_value("text-size-adjust", 'calc(10% * sibling-index())', '10%'); </script> </body> </html>