| Index: sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/sky/engine/core/css/parser/CSSPropertyParser.cpp b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| index c142bafcd328e74d3ba3ec1793810e2f4b5c9c5c..bd1e3a4ea935a8e8c30a770a6cd84978efcd7a9c 100644
|
| --- a/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| @@ -954,7 +954,7 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important)
|
| case CSSPropertyOpacity:
|
| validPrimitive = validUnit(value, FNumber);
|
| break;
|
| - case CSSPropertyWebkitFilter:
|
| + case CSSPropertyFilter:
|
| if (id == CSSValueNone)
|
| validPrimitive = true;
|
| else {
|
| @@ -5517,7 +5517,7 @@ PassRefPtr<CSSFilterValue> CSSPropertyParser::parseBuiltinFilterArguments(CSSPar
|
| }
|
| case CSSFilterValue::DropShadowFilterOperation: {
|
| // drop-shadow() takes a single shadow.
|
| - RefPtr<CSSValueList> shadowValueList = parseShadow(args, CSSPropertyWebkitFilter);
|
| + RefPtr<CSSValueList> shadowValueList = parseShadow(args, CSSPropertyFilter);
|
| if (!shadowValueList || shadowValueList->length() != 1)
|
| return nullptr;
|
|
|
|
|