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

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

Issue 2653733005: Added parseShorthand method from the parser to CSSPropertyAPI.h. (Closed)
Patch Set: rebase 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/Source/build/scripts/make_css_property_apis.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
index 141daf2b70f98f8d57bcd60f79aee044984b35a5..d8900abcb8d255625dce3b17a50ece3d1fcb6947 100755
--- a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
+++ b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
@@ -26,7 +26,7 @@ class CSSPropertyAPIWriter(make_style_builder.StyleBuilderWriter):
def __init__(self, json5_file_path):
# Holds names of all valid methods in the API. When a new method is added
# to the API, it must also be added to this list.
- valid_methods = ["parseSingleValue"]
+ valid_methods = ["parseSingleValue", "parseShorthand"]
sashab 2017/01/31 22:58:14 Need to rebase this :)
aazzam 2017/02/01 00:30:05 rebased :)
super(CSSPropertyAPIWriter, self).__init__(json5_file_path)
self._outputs = {

Powered by Google App Engine
This is Rietveld 408576698