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

Unified Diff: Source/core/css/parser/BisonCSSParser-in.cpp

Issue 131773002: Broaden justify-self's parsing name (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/css/parser/BisonCSSParser.h ('k') | Source/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/BisonCSSParser-in.cpp
diff --git a/Source/core/css/parser/BisonCSSParser-in.cpp b/Source/core/css/parser/BisonCSSParser-in.cpp
index c3606e2add9cd668f3c3274a5d83614b6596ea12..277ba0f34cf34167aa1d8005a86ac151892aa321 100644
--- a/Source/core/css/parser/BisonCSSParser-in.cpp
+++ b/Source/core/css/parser/BisonCSSParser-in.cpp
@@ -2435,7 +2435,7 @@ bool BisonCSSParser::parseValue(CSSPropertyID propId, bool important)
if (!RuntimeEnabledFeatures::cssGridLayoutEnabled())
return false;
- return parseJustifySelf(propId, important);
+ return parseItemPositionOverflowPosition(propId, important);
case CSSPropertyGridAutoColumns:
case CSSPropertyGridAutoRows:
if (!RuntimeEnabledFeatures::cssGridLayoutEnabled())
@@ -5097,7 +5097,7 @@ static bool isItemPositionKeyword(CSSValueID id)
|| id == CSSValueFlexEnd || id == CSSValueLeft || id == CSSValueRight;
}
-bool BisonCSSParser::parseJustifySelf(CSSPropertyID propId, bool important)
+bool BisonCSSParser::parseItemPositionOverflowPosition(CSSPropertyID propId, bool important)
{
// auto | baseline | stretch | [<item-position> && <overflow-position>? ]
// <item-position> = center | start | end | self-start | self-end | flex-start | flex-end | left | right;
« no previous file with comments | « Source/core/css/parser/BisonCSSParser.h ('k') | Source/core/rendering/style/RenderStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698