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

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

Issue 450103005: Add inherited flag to CSSProperties.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mark paint-order inherited Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/build/scripts/make_css_property_metadata.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/css_properties.py
diff --git a/Source/build/scripts/css_properties.py b/Source/build/scripts/css_properties.py
index 29eec1d4668672b2d0626f54f10764d739092c59..cc4d9877975d769415be2d17ef0380bce203db49 100755
--- a/Source/build/scripts/css_properties.py
+++ b/Source/build/scripts/css_properties.py
@@ -12,6 +12,7 @@ class CSSProperties(in_generator.Writer):
'alias_for': None,
'longhands': '',
'animatable': False,
+ 'inherited': False,
'font': False,
'svg': False,
'name_for_methods': None,
@@ -31,6 +32,7 @@ class CSSProperties(in_generator.Writer):
valid_values = {
'animatable': (True, False),
+ 'inherited': (True, False),
'font': (True, False),
'svg': (True, False),
'custom_all': (True, False),
« no previous file with comments | « no previous file | Source/build/scripts/make_css_property_metadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698