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

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

Issue 2117143003: Add a fast-path for independent inherited properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@computedstyle_cleanup_rename_final_member_fields
Patch Set: Review feedback Created 4 years, 5 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 d4b7977bc3a0136beb8d8e02fc92492ceacd65e8..43e8be479ed4ccde3c4488e8e73a6d21ca2389ba 100755
--- a/third_party/WebKit/Source/build/scripts/css_properties.py
+++ b/third_party/WebKit/Source/build/scripts/css_properties.py
@@ -15,6 +15,7 @@ class CSSProperties(in_generator.Writer):
'longhands': '',
'interpolable': False,
'inherited': False,
+ 'independent': False,
'font': False,
'svg': False,
'name_for_methods': None,
@@ -40,6 +41,7 @@ class CSSProperties(in_generator.Writer):
valid_values = {
'interpolable': (True, False),
'inherited': (True, False),
+ 'independent': (True, False),
'font': (True, False),
'svg': (True, False),
'custom_all': (True, False),

Powered by Google App Engine
This is Rietveld 408576698