| Index: third_party/WebKit/Source/build/scripts/css_properties.py
|
| diff --git a/third_party/WebKit/Source/build/scripts/css_properties.py b/third_party/WebKit/Source/build/scripts/css_properties.py
|
| index a79fa7016a7e1cb18868bd9443ef88df6544b8da..1d461f7d497d930f09227bf03f11d949e4289bb7 100755
|
| --- a/third_party/WebKit/Source/build/scripts/css_properties.py
|
| +++ b/third_party/WebKit/Source/build/scripts/css_properties.py
|
| @@ -52,8 +52,10 @@ class CSSProperties(in_generator.Writer):
|
| self._aliases = [property for property in properties if property['alias_for']]
|
| properties = [property for property in properties if not property['alias_for']]
|
|
|
| - # We currently assign 0 to CSSPropertyInvalid, and 1 to CSSPropertyVariable
|
| - self._first_enum_value = 2
|
| + # 0: CSSPropertyInvalid
|
| + # 1: CSSPropertyApplyAtRule
|
| + # 2: CSSPropertyVariable
|
| + self._first_enum_value = 3
|
|
|
| # StylePropertyMetadata additionally assumes there are under 1024 properties.
|
| assert self._first_enum_value + len(properties) < 512, 'Property aliasing expects there are under 512 properties.'
|
|
|