diff --git a/css-typed-om/Overview.bs b/css-typed-om/Overview.bs index 5abd096c..1d66c256 100644 --- a/css-typed-om/Overview.bs +++ b/css-typed-om/Overview.bs @@ -2897,12 +2897,43 @@ depending on the property they came from: 8. Return the result of concatenating all the items in |values|, separated by " " (U+0020 SPACE). +: 'bottom' +:: + 1. If the value is the ''auto'' keyword, + return "auto". + 2. If the value is of type <>, + return the result of serializing the <> value. + 3. Otherwise, return the result of serializing the <> value. + : 'color' :: 1. If the value is the ''currentcolor'' keyword, return "currentcolor". 2. Otherwise, return the result of serializing the <> value. +: 'left' +:: + 1. If the value is the ''auto'' keyword, + return "auto". + 2. If the value is of type <>, + return the result of serializing the <> value. + 3. Otherwise, return the result of serializing the <> value. + +: 'right' +:: + 1. If the value is the ''auto'' keyword, + return "auto". + 2. If the value is of type <>, + return the result of serializing the <> value. + 3. Otherwise, return the result of serializing the <> value. + +: 'top' +:: + 1. If the value is the ''auto'' keyword, + return "auto". + 2. If the value is of type <>, + return the result of serializing the <> value. + 3. Otherwise, return the result of serializing the <> value. Security Considerations {#security-considerations}