| Index: Source/build/scripts/css_properties.py
|
| diff --git a/Source/build/scripts/css_properties.py b/Source/build/scripts/css_properties.py
|
| index a155a1bba385d852b46b30cdd36d1e9d3f5c8a66..29eec1d4668672b2d0626f54f10764d739092c59 100755
|
| --- a/Source/build/scripts/css_properties.py
|
| +++ b/Source/build/scripts/css_properties.py
|
| @@ -11,6 +11,7 @@ class CSSProperties(in_generator.Writer):
|
| defaults = {
|
| 'alias_for': None,
|
| 'longhands': '',
|
| + 'animatable': False,
|
| 'font': False,
|
| 'svg': False,
|
| 'name_for_methods': None,
|
| @@ -29,6 +30,7 @@ class CSSProperties(in_generator.Writer):
|
| }
|
|
|
| valid_values = {
|
| + 'animatable': (True, False),
|
| 'font': (True, False),
|
| 'svg': (True, False),
|
| 'custom_all': (True, False),
|
|
|