| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index e312bb2ad25a14d6f7e56d1118f0c6429b164c2d..a680a8965fed22ba7f1018e04a7543eb9120f0f2 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -2231,12 +2231,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;
|
| }
|
|
|