| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index dcf2ae55013e73e1317603422ca689f2a4ded1c2..a1f5266af64744fd587af70a51c7cc6b1bf528f9 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -205,7 +205,7 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyWebkitBoxDecorationBreak,
|
| CSSPropertyWebkitBoxShadow,
|
| CSSPropertyWebkitClipPath,
|
| - CSSPropertyWebkitFilter,
|
| + CSSPropertyFilter,
|
| CSSPropertyAlignContent,
|
| CSSPropertyAlignItems,
|
| CSSPropertyAlignSelf,
|
| @@ -1202,7 +1202,7 @@ static bool isLayoutDependent(CSSPropertyID propertyID, PassRefPtr<RenderStyle>
|
| case CSSPropertyTransformOrigin:
|
| case CSSPropertyWebkitTransformOrigin:
|
| case CSSPropertyWidth:
|
| - case CSSPropertyWebkitFilter:
|
| + case CSSPropertyFilter:
|
| return true;
|
| case CSSPropertyMargin:
|
| return renderer && renderer->isBox() && (!style || !style->marginBottom().isFixed() || !style->marginTop().isFixed() || !style->marginLeft().isFixed() || !style->marginRight().isFixed());
|
| @@ -2106,7 +2106,7 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| return valueForBasicShape(*style, toShapeClipPathOperation(operation)->basicShape());
|
| }
|
| return cssValuePool().createIdentifierValue(CSSValueNone);
|
| - case CSSPropertyWebkitFilter:
|
| + case CSSPropertyFilter:
|
| return valueForFilter(renderer, *style);
|
|
|
| case CSSPropertyBackground:
|
|
|