Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/CSSProperties.in |
| diff --git a/third_party/WebKit/Source/core/css/CSSProperties.in b/third_party/WebKit/Source/core/css/CSSProperties.in |
| index 77117dae4cdbc15bcb1fce840b1c5719e896b28b..e9836f67bf056f7c7c6c92cc9f4e52af75dd7e96 100644 |
| --- a/third_party/WebKit/Source/core/css/CSSProperties.in |
| +++ b/third_party/WebKit/Source/core/css/CSSProperties.in |
| @@ -23,6 +23,21 @@ |
| // The property is a shorthand for several other properties. |
| +// keyword_only |
| +// These properties only store keyword values. This is used when |
| +// generating the ComputedStyle storage for the property. The initial |
| +// value for this property on a ComputedStyle is the first keyword in |
| +// the specified list of keywords. |
| +// TODO(sashab, meade): Remove this once TypedOM types are specified for |
| +// every property, since this value can be inferred from that. |
| + |
| + |
| +// - keywords=[keyword1|keyword2] |
| +// This specifies all valid keyword values for the property. |
| +// TODO(sashab): Once all properties are represented here, delete |
| +// CSSValueKeywords.in and use this list instead. |
|
ojan
2016/09/07 03:46:10
<3
|
| + |
| + |
| // Flags which go into CSSOMTypes: |
| // - typedom_types=[Type|OtherType] |
| // The property can take types specified in typedom_types for CSS Typed OM. |
| @@ -342,7 +357,7 @@ transition-timing-function custom_all |
| unicode-bidi |
| vector-effect svg |
| vertical-align interpolable, custom_inherit, custom_value |
| -visibility interpolable, inherited, independent |
| +visibility interpolable, inherited, independent, keyword_only, keywords=[visible|hidden|collapse] |
| x interpolable, svg, converter=convertLength |
| y interpolable, svg, converter=convertLength |
| -webkit-appearance type_name=ControlPart |