| Index: third_party/WebKit/Source/build/scripts/make_computed_style_base.py
|
| diff --git a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
|
| index 88bebe5598f36d604183f4e6120a5b9ee6200a1f..1f087f10c1dfe4ccab765f9084f4e9bc07a32ae8 100755
|
| --- a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
|
| +++ b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
|
| @@ -425,7 +425,7 @@ class ComputedStyleBaseWriter(make_style_builder.StyleBuilderWriter):
|
| 'ComputedStyleBaseConstants.h': self.generate_base_computed_style_constants,
|
| }
|
|
|
| - @template_expander.use_jinja('ComputedStyleBase.h.tmpl')
|
| + @template_expander.use_jinja('ComputedStyleBase.h.tmpl', tests={'in': lambda a, b: a in b})
|
| def generate_base_computed_style_h(self):
|
| return {
|
| 'properties': self._properties,
|
| @@ -434,7 +434,7 @@ class ComputedStyleBaseWriter(make_style_builder.StyleBuilderWriter):
|
| 'computed_style': self._root_group,
|
| }
|
|
|
| - @template_expander.use_jinja('ComputedStyleBase.cpp.tmpl')
|
| + @template_expander.use_jinja('ComputedStyleBase.cpp.tmpl', tests={'in': lambda a, b: a in b})
|
| def generate_base_computed_style_cpp(self):
|
| return {
|
| 'properties': self._properties,
|
|
|