| 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),
|
|
|