From daf1eec076763f07c5b0f297079e80cd6d336a30 Mon Sep 17 00:00:00 2001 From: Surma Date: Mon, 18 Jan 2016 15:41:39 +0000 Subject: [PATCH] [css-typed-om] Small readability fix --- css-typed-om/Overview.bs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css-typed-om/Overview.bs b/css-typed-om/Overview.bs index db7ae51e..e4ef1a5d 100644 --- a/css-typed-om/Overview.bs +++ b/css-typed-om/Overview.bs @@ -43,7 +43,7 @@ enum StyleValueKeyword {"initial", "inherit", "revert", "unset"}; interface StyleValue { attribute DOMString cssString; - static (StyleValue or sequence<StyleValue>)? parse(DOMString property, DOMString cssText); + static (StyleValue or sequence<StyleValue>)? parse(DOMString property, DOMString cssText); }; [Constructor(StyleValueKeyword)] @@ -59,7 +59,7 @@ representation (see ) of the val contained by a {{StyleValue}} object. The parse(DOMString property, DOMString cssText) -method attempts to parse cssText as a valid {{StyleValue}} or sequence<{{StyleValue> for +method attempts to parse cssText as a valid {{StyleValue}} or sequence<{{StyleValue}}> for property, returning null on failure. Issue(41): Need to add a section describing values that reference custom properties. Should StyleValue handle @@ -352,7 +352,7 @@ Issue: What happens if the provided DOMString or LengthValue for (e.g.) a Simple
 [Constructor(),
- Constructor(sequence<TransformComponent>)]
+ Constructor(sequence<TransformComponent> transforms)]
 interface TransformValue : StyleValue {
   iterable<TransformComponent>;
   Matrix asMatrix();