Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 7 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/parsing/text-spacing-trim-valid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text Module Test: parsing text-spacing-trim with valid values</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("text-spacing-trim", "normal");
test_valid_value("text-spacing-trim", "auto");
test_valid_value("text-spacing-trim", "space-all");
test_valid_value("text-spacing-trim", "trim-both");
test_valid_value("text-spacing-trim", "trim-all");
test_valid_value("text-spacing-trim", "trim-start");
test_valid_value("text-spacing-trim", "space-first");
</script>
</body>
</html>