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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_converter.py

Issue 2620883002: Convert Settings.in, CSSValueKeywords.in, SVGCSSValueKeywords.in to json5 (Closed)
Patch Set: Convert CSSProperties.in to json5 format Created 3 years, 11 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/Tools/Scripts/webkitpy/w3c/test_converter.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_converter.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_converter.py
index cdf326caa7094d8c9bdb4c890c91522e93be6b62..c1197c560c468c63193411df642222199e6a82a0 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_converter.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_converter.py
@@ -87,7 +87,7 @@ class _W3CTestConverter(HTMLParser):
self.resources_relpath = resources_relpath
# These settings might vary between WebKit and Blink.
- self._css_property_file = self.path_from_webkit_root('Source', 'core', 'css', 'CSSProperties.in')
+ self._css_property_file = self.path_from_webkit_root('Source', 'core', 'css', 'CSSProperties.json5')
self.prefixed_properties = self.read_webkit_prefixed_css_property_list()
prop_regex = r'([\s{]|^)(' + '|'.join(
prop.replace('-webkit-', '') for prop in self.prefixed_properties) + r')(\s+:|:)'

Powered by Google App Engine
This is Rietveld 408576698