wpt / css / css-text / parsing / hyphenate-limit-chars-computed.html

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)

SubtestStatusMessage
Property hyphenate-limit-chars value 'auto'FAILassert_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'FAILassert_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'FAILassert_true: hyphenate-limit-chars doesn't seem to be supported in the computed style expected true got false
Property hyphenate-limit-chars value '5'FAILassert_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'FAILassert_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'FAILassert_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)'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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>