Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 19 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/parsing/text-autospace-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text: getComputedStyle().textAutospace</title>
<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-autospace", "initial", "normal");
test_computed_value("text-autospace", "normal");
test_computed_value("text-autospace", "no-autospace");
test_computed_value("text-autospace", "auto");
test_computed_value("text-autospace", "ideograph-alpha");
test_computed_value("text-autospace", "ideograph-numeric");
test_computed_value("text-autospace", "ideograph-alpha ideograph-numeric");
test_computed_value("text-autospace", "punctuation");
test_computed_value("text-autospace", "punctuation ideograph-alpha", "ideograph-alpha punctuation");
test_computed_value("text-autospace", "punctuation ideograph-alpha ideograph-numeric", "ideograph-alpha ideograph-numeric punctuation");
test_computed_value("text-autospace", "ideograph-alpha insert");
test_computed_value("text-autospace", "ideograph-numeric insert");
test_computed_value("text-autospace", "ideograph-alpha ideograph-numeric insert");
test_computed_value("text-autospace", "punctuation insert");
test_computed_value("text-autospace", "punctuation ideograph-alpha insert", "ideograph-alpha punctuation insert");
test_computed_value("text-autospace", "insert ideograph-alpha", "ideograph-alpha insert");
test_computed_value("text-autospace", "insert ideograph-numeric", "ideograph-numeric insert");
test_computed_value("text-autospace", "insert ideograph-alpha ideograph-numeric", "ideograph-alpha ideograph-numeric insert");
test_computed_value("text-autospace", "insert punctuation", "punctuation insert");
test_computed_value("text-autospace", "insert punctuation ideograph-alpha", "ideograph-alpha punctuation insert");
test_computed_value("text-autospace", "insert punctuation ideograph-alpha ideograph-numeric", "ideograph-alpha ideograph-numeric punctuation insert");
test_computed_value("text-autospace", "ideograph-alpha replace");
test_computed_value("text-autospace", "ideograph-numeric replace");
test_computed_value("text-autospace", "ideograph-alpha ideograph-numeric replace");
test_computed_value("text-autospace", "punctuation replace");
test_computed_value("text-autospace", "punctuation ideograph-alpha replace", "ideograph-alpha punctuation replace");
test_computed_value("text-autospace", "replace ideograph-alpha", "ideograph-alpha replace");
test_computed_value("text-autospace", "replace ideograph-numeric", "ideograph-numeric replace");
test_computed_value("text-autospace", "replace ideograph-alpha ideograph-numeric", "ideograph-alpha ideograph-numeric replace");
test_computed_value("text-autospace", "replace punctuation", "punctuation replace");
test_computed_value("text-autospace", "replace punctuation ideograph-alpha", "ideograph-alpha punctuation replace");
test_computed_value("text-autospace", "replace punctuation ideograph-alpha ideograph-numeric", "ideograph-alpha ideograph-numeric punctuation replace");
</script>
</body>
</html>