wpt / css / css-text / parsing / text-spacing-invalid.html

Status: PASS | Duration: 60ms | Subtests: 11/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
e.style['text-spacing'] = "none none" should not set the property valuePASS
e.style['text-spacing'] = "none no-autospace" should not set the property valuePASS
e.style['text-spacing'] = "no-autospace none" should not set the property valuePASS
e.style['text-spacing'] = "none space-first" should not set the property valuePASS
e.style['text-spacing'] = "space-first none" should not set the property valuePASS
e.style['text-spacing'] = "auto auto" should not set the property valuePASS
e.style['text-spacing'] = "auto no-autospace" should not set the property valuePASS
e.style['text-spacing'] = "no-autospace auto" should not set the property valuePASS
e.style['text-spacing'] = "auto space-first" should not set the property valuePASS
e.style['text-spacing'] = "space-first auto" should not set the property valuePASS
e.style['text-spacing'] = "normal normal no-autospace" should not set the property valuePASS

/css/css-text/parsing/text-spacing-invalid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text Module Test: parsing text-spacing with invalid values</title>
<link rel="help" href="https://drafts.csswg.org/css-text-4/#text-spacing-property">
<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>