Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: third_party/WebKit/Source/build/scripts/css_properties.py

Issue 1910263003: Generate CSSPropertyEquality instead of using hand-updated file. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests2! Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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),

Powered by Google App Engine
This is Rietveld 408576698