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

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

Issue 2914613002: Add keyword_subset field template and generate text-decoration-line. (Closed)
Patch Set: Rebase Created 3 years, 6 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/make_css_value_id_mappings.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_value_id_mappings.py b/third_party/WebKit/Source/build/scripts/make_css_value_id_mappings.py
index 8394727d702d01f727764c0e1d47011be4affc21..648310eb2363586cd216b72508f192266d43f007 100755
--- a/third_party/WebKit/Source/build/scripts/make_css_value_id_mappings.py
+++ b/third_party/WebKit/Source/build/scripts/make_css_value_id_mappings.py
@@ -22,7 +22,7 @@ class CSSValueIDMappingsWriter(make_style_builder.StyleBuilderWriter):
mappings = {}
include_paths = set()
for property_ in self._properties.values():
- if property_['field_template'] == 'keyword':
+ if property_['field_template'] in ('keyword', 'multi_keyword'):
include_paths.update(property_['include_paths'])
mappings[property_['type_name']] = {

Powered by Google App Engine
This is Rietveld 408576698