| 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;
|
|
|