Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cssom-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1888,9 +1888,9 @@ To <dfn export>serialize a CSS rule</dfn>, perform one of the following in accor
<ol>
<li>The string "<code>@media</code>", followed by a single SPACE (U+0020).</li>
<li>The result of performing <a>serialize a media query list</a> on rule's media query list.</li>
<li>A single SPACE (U+0020), followed by the string "{", i.e., LEFT CURLY BRACKET (U+007B), followed by a newline.</li>
<li>A single SPACE (U+0020), followed by the string "{", i.e., LEFT CURLY BRACKET (U+007B).</li>
<li>The result of performing <a>serialize a CSS rule</a> on each rule in the rule's {{CSSGroupingRule/cssRules}} list,
filtering out empty strings, indenting each item with two spaces, all joined with newline.</li>
filtering out empty strings, all preceded by a newline and indented by two spaces.</li>
<li>A newline, followed by the string "}", i.e., RIGHT CURLY BRACKET (U+007D)</li>
</ol>

Expand Down Expand Up @@ -1974,7 +1974,7 @@ To <dfn export>serialize a CSS rule</dfn>, perform one of the following in accor
<li>The serialization of the {{CSSKeyframesRule/name}} attribute. If the attribute is a CSS wide keyword, or the value <css>default</css>, or the value <css>none</css>,
then it is [=serialized as a string=]. Otherwise, it is <a lt="serialize an identifier">serialized as an identifier</a>.
<li>The string "<code> { </code>", i.e., a single SPACE (U+0020), followed by LEFT CURLY BRACKET (U+007B), followed by a single SPACE (U+0020).
<li>The result of performing <a>serialize a CSS rule</a> on each rule in the rule's {{CSSKeyframesRule/cssRules}} list, separated by a newline and indented by two spaces.</li>
<li>The result of performing <a>serialize a CSS rule</a> on each rule in the rule's {{CSSKeyframesRule/cssRules}} list, preceded by a newline and indented by two spaces.</li>
<li>A newline, followed by the string "}", i.e., RIGHT CURLY BRACKET (U+007D)</li>
</ol>

Expand Down