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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp

Issue 2808383008: Added unresolved property argument to ParseSingleValue method (Closed)
Patch Set: Created 3 years, 8 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/core/css/properties/CSSPropertyAPIAlignItems.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
index 6ff663d90efe3067bd1fa0ce7cb23e4d2f7977f2..4b2385b9d39f650f49fd0a21976a21591e48771e 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
@@ -12,7 +12,8 @@ namespace blink {
const CSSValue* CSSPropertyAPIAlignItems::parseSingleValue(
CSSParserTokenRange& range,
- const CSSParserContext& context) {
+ const CSSParserContext& context,
+ CSSPropertyID) {
DCHECK(RuntimeEnabledFeatures::cssGridLayoutEnabled());
// align-items property does not allow the 'auto' value.
if (CSSPropertyParserHelpers::IdentMatches<CSSValueAuto>(range.Peek().Id()))

Powered by Google App Engine
This is Rietveld 408576698