Status: FAIL | Duration: 56ms | Subtests: 0/11 | 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 hyphenate-limit-chars value 'auto' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto auto' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto auto auto' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value '5' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value '5 2' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value '5 2 3' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value '5 2 calc(3.1)' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto 2' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto 2 2' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto 2 auto' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
| Property hyphenate-limit-chars value 'auto auto 2' | FAIL | assert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false |
/css/css-text/parsing/hyphenate-limit-chars-computed.html
<!DOCTYPE html> <title>CSS Text: hyphenate-limit-chars with computed values</title> <link rel="help" href="https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-chars"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> <div id="target"></div> <script> test_computed_value("hyphenate-limit-chars", "auto"); test_computed_value("hyphenate-limit-chars", "auto auto", "auto"); test_computed_value("hyphenate-limit-chars", "auto auto auto", "auto"); test_computed_value("hyphenate-limit-chars", "5"); test_computed_value("hyphenate-limit-chars", "5 2"); test_computed_value("hyphenate-limit-chars", "5 2 3"); test_computed_value("hyphenate-limit-chars", "5 2 calc(3.1)", "5 2 3"); test_computed_value("hyphenate-limit-chars", "auto 2"); test_computed_value("hyphenate-limit-chars", "auto 2 2", "auto 2"); test_computed_value("hyphenate-limit-chars", "auto 2 auto"); test_computed_value("hyphenate-limit-chars", "auto auto 2"); </script>