| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index 9fd20e912246401b1b3339f651a3b914f9176ca2..2acff38b5d4ad1a74f5b34fa90699f2a38ebdfdc 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -2182,12 +2182,12 @@ bool StyleResolver::useSVGZoomRules()
|
|
|
| static bool createGridTrackBreadth(CSSPrimitiveValue* primitiveValue, const StyleResolverState& state, GridLength& workingLength)
|
| {
|
| - if (primitiveValue->getValueID() == CSSValueWebkitMinContent) {
|
| + if (primitiveValue->getValueID() == CSSValueMinContent) {
|
| workingLength = Length(MinContent);
|
| return true;
|
| }
|
|
|
| - if (primitiveValue->getValueID() == CSSValueWebkitMaxContent) {
|
| + if (primitiveValue->getValueID() == CSSValueMaxContent) {
|
| workingLength = Length(MaxContent);
|
| return true;
|
| }
|
|
|