From 8eab057586683c2d95e04c2b77c9e06d09bb3422 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 1 May 2026 17:11:48 +0100 Subject: [PATCH] [cssom-1] Correct whitespace in `@font-face` serialization --- cssom-1/Overview.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cssom-1/Overview.bs b/cssom-1/Overview.bs index 0b98f4b01a58..edfa480f8fc1 100644 --- a/cssom-1/Overview.bs +++ b/cssom-1/Overview.bs @@ -1898,10 +1898,10 @@ To serialize a CSS rule, perform one of the following in accor
The result of concatenating the following:
    -
  1. The string "@font-face {", followed by a single SPACE (U+0020).
  2. +
  3. The string "@font-face {".
  4. If the '@font-face/font-family' descriptor is present:
      -
    1. The string "font-family:", followed by a single SPACE (U+0020).
    2. +
    3. A single SPACE (U+0020), followed by the string "font-family:", followed by a single SPACE (U+0020).
    4. The result of performing serialize a string on the rule’s font family name.
    5. The string ";", i.e., SEMICOLON (U+003B).