1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/parsing/hyphenate-limit-chars-computed.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
1 KiB
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>