Skip to content

Commit f8b1bcc

Browse files
committed
[cssom] Serialize U+0000 in string as U+FFFD, NOT escaped as code point
This was missed in 061ede6. Fixes #1105.
1 parent f609626 commit f8b1bcc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cssom/Overview.bs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,7 @@ below to each character of the given string, followed by
221221
'"' (U+0022):
222222

223223
<ul>
224-
<li>If the character is NULL (U+0000), then the REPLACEMENT CHARACTER (U+FFFD)
225-
<a>escaped as code point</a>.
224+
<li>If the character is NULL (U+0000), then the REPLACEMENT CHARACTER (U+FFFD).
226225
<li>If the character is in the range [\1-\1f] (U+0001 to U+001F) or is U+007F, the character
227226
<a>escaped as code point</a>.
228227
<li>If the character is '"' (U+0022) or "<code>\</code>"

0 commit comments

Comments
 (0)