Skip to content
Merged
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
41 changes: 12 additions & 29 deletions scroll-animations-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1053,37 +1053,20 @@ interface CSSScrollTimelineRule : CSSRule {
on the value of the 'orientation' descriptor,
followed by a SEMICOLON (U+003B),
followed by a SPACE (U+0020).
1. If the 'start' descriptor is missing, the empty string.
Otherwise, the concatenation of the following:
1. The string <code>"start:"</code>,
followed by a SPACE (U+0020).
1. The result of performing <a>serialize a scroll timeline offset</a>
on the rule's 'start' descriptor,
1. If the 'scrollOffsets' descriptor is missing, the empty string.
Otherwise, the concatenation of the following:
1. The string <code>"scrollOffsets:"</code>,
followed by a SPACE (U+0020),
followed by a LEFT SQUARE BRACKET (U+005B).
1. For each value in the list for the rule's 'scroll-offsets'
descriptor:
1. The result of performing
<a>serialize a scroll timeline offset</a> on the value.
1. If not the last value,
A COMMA (U+002C), followed by a SPACE (U+0020).
1. A RIGHT SQUARE BRACKET (U+005D),
followed by a SEMICOLON (U+003B),
followed by a SPACE (U+0020).
1. If the 'end' descriptor is missing, the empty string.
Otherwise, the concatenation of the following:
1. The string <code>"end:"</code>,
followed by a SPACE (U+0020).
1. The result of performing <a>serialize a scroll timeline offset</a>
on the rule's 'end' descriptor,
followed by a SEMICOLON (U+003B),
followed by a SPACE (U+0020).
1. If the 'time-range' descriptor is missing, the empty string.
Otherwise, the concatenation of the following:
1. The string <code>"time-range:"</code>,
followed by a SPACE (U+0020).
1. One of the following,
depending on the value of the 'time-range' descriptor:
<dl class=switch>
: an identifier
:: The result of performing <a>serialize an identifier</a>
on that identifier.
: &lt;time>
:: The result of performing <a>serialize a CSS component value</a>
on that value.
</dl>
1. A single SEMICOLON (U+003B), followed by a SPACE (U+0020).
1. A single RIGHT CURLY BRACKET (U+007D).
</div>

Expand Down