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

Unified Diff: Source/devtools/scripts/generate_supported_css.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/devtools.gyp ('k') | Tools/Scripts/webkitpy/w3c/test_converter.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/scripts/generate_supported_css.py
diff --git a/Source/devtools/scripts/generate_supported_css.py b/Source/devtools/scripts/generate_supported_css.py
index 2883c943332d2495aa4524c54279cd215a7ae724..2ddfef7839ad06dc5b2f4da56be8d0bcb94d1fa6 100755
--- a/Source/devtools/scripts/generate_supported_css.py
+++ b/Source/devtools/scripts/generate_supported_css.py
@@ -59,14 +59,12 @@ def fillCSSShorthandsFromFile(fileName):
lines = f.readlines()
lines = filterCommentsAndEmptyLines(lines)
for line in lines:
- # Every line is:
- # <property-name>[ longhands=<longhand 1>;<longhand 2>;<longhand 3>,runtimeEnabledShorthand=<runtime flag name>]
- # There might be a runtime flag declaration at the end of the list followed by a comma.
- if "," in line:
- line = line[:line.index(",")]
- shorthand = line[:line.index(" ")]
- longhands = line[line.index("=") + 1:].split(";")
- cssProperties[shorthand] = longhands
+ # Format for shorthands is:
+ # <property-name>[ longhands=<longhand 1>;<longhand 2>;<longhand 3>]
+ shorthand = line.partition(" ")[0]
+ longhands = line.partition("longhands=")[2].partition(",")[0]
+ if longhands:
+ cssProperties[shorthand] = longhands.split(";")
fillPropertiesFromFile(sys.argv[1])
fillPropertiesFromFile(sys.argv[2])
« no previous file with comments | « Source/devtools/devtools.gyp ('k') | Tools/Scripts/webkitpy/w3c/test_converter.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698