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

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

Issue 410953002: Merge CSSProperties.in and CSSShorthands.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@infiles
Patch Set: 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 | « Source/devtools/scripts/generate_supported_css.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/w3c/test_converter.py
diff --git a/Tools/Scripts/webkitpy/w3c/test_converter.py b/Tools/Scripts/webkitpy/w3c/test_converter.py
index 1c49a5bf34470af9245d274f6f451dc18412f841..02208636b0cd4c2a817afc172105dca9a3b33c05 100755
--- a/Tools/Scripts/webkitpy/w3c/test_converter.py
+++ b/Tools/Scripts/webkitpy/w3c/test_converter.py
@@ -71,8 +71,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', 'CSSPropertyNames.in')
- self._css_property_split_string = 'alias_for='
+ self._css_property_file = self.path_from_webkit_root('Source', 'core', 'css', 'CSSProperties.in')
self.prefixed_properties = self.read_webkit_prefixed_css_property_list()
@@ -92,17 +91,16 @@ class _W3CTestConverter(HTMLParser):
contents = self._filesystem.read_text_file(self._css_property_file)
for line in contents.splitlines():
- if re.match('^(#|//)', line):
+ if re.match('^(#|//|$)', line):
# skip comments and preprocessor directives
continue
- fields = line.split(self._css_property_split_string)
- for prop in fields:
- # Find properties starting with the -webkit- prefix.
- match = re.match('-webkit-([\w|-]*)', prop)
- if match:
- prefixed_properties.append(match.group(1))
- else:
- unprefixed_properties.add(prop.strip())
+ prop = line.split()[0]
+ # Find properties starting with the -webkit- prefix.
+ match = re.match('-webkit-([\w|-]*)', prop)
+ if match:
+ prefixed_properties.append(match.group(1))
+ else:
+ unprefixed_properties.add(prop.strip())
# Ignore any prefixed properties for which an unprefixed version is supported
return [prop for prop in prefixed_properties if prop not in unprefixed_properties]
« no previous file with comments | « Source/devtools/scripts/generate_supported_css.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698