Chromium Code Reviews| 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 50f4f38c1306299ec53f58c3671c9e0cbc6098f3..e997beffb8ec0138808e1cb38a9d93461c7f71bb 100755 |
| --- a/third_party/WebKit/Source/build/scripts/css_properties.py |
| +++ b/third_party/WebKit/Source/build/scripts/css_properties.py |
| @@ -16,6 +16,8 @@ class CSSProperties(in_generator.Writer): |
| 'inherited': False, |
| 'font': False, |
| 'svg': False, |
| + 'animation': False, |
|
Timothy Loh
2016/05/24 05:38:35
I'm not really a fan of having these as arguments
|
| + 'transition': False, |
| 'name_for_methods': None, |
| 'use_handlers_for': None, |
| 'getter': None, |
| @@ -41,6 +43,8 @@ class CSSProperties(in_generator.Writer): |
| 'inherited': (True, False), |
| 'font': (True, False), |
| 'svg': (True, False), |
| + 'animation': (True, False), |
| + 'transition': (True, False), |
| 'custom_all': (True, False), |
| 'custom_initial': (True, False), |
| 'custom_inherit': (True, False), |