diff --git a/scroll-animations-1/Overview.bs b/scroll-animations-1/Overview.bs index 6794a2085d2b..571cafa3406a 100755 --- a/scroll-animations-1/Overview.bs +++ b/scroll-animations-1/Overview.bs @@ -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 "start:", - followed by a SPACE (U+0020). - 1. The result of performing serialize a scroll timeline offset - 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 "scrollOffsets:", + 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 + serialize a scroll timeline offset 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 "end:", - followed by a SPACE (U+0020). - 1. The result of performing serialize a scroll timeline offset - 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 "time-range:", - followed by a SPACE (U+0020). - 1. One of the following, - depending on the value of the 'time-range' descriptor: -
- : an identifier - :: The result of performing serialize an identifier - on that identifier. - : <time> - :: The result of performing serialize a CSS component value - on that value. -
- 1. A single SEMICOLON (U+003B), followed by a SPACE (U+0020). 1. A single RIGHT CURLY BRACKET (U+007D).