Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text Module Test: parsing text-spacing with invalid 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>
// These keywords must appear alone.
for (const keyword of ['none', 'auto']) {
test_invalid_value("text-spacing", `${keyword} ${keyword}`);
for (const keyword2 of ['no-autospace', 'space-first']) {
test_invalid_value("text-spacing", `${keyword} ${keyword2}`);
test_invalid_value("text-spacing", `${keyword2} ${keyword}`);
}
}
test_invalid_value("text-spacing", `normal normal no-autospace`);
</script>
</body>
</html>