| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index 5f5ade05edc8d65de5ea214beb081425f345bcb9..436decbee17fd69adafb362d9d84f3c463a27b7e 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -179,8 +179,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyWordWrap,
|
| CSSPropertyZIndex,
|
|
|
| - CSSPropertyBackfaceVisibility,
|
| - CSSPropertyWebkitBackfaceVisibility,
|
| CSSPropertyWebkitBackgroundClip,
|
| CSSPropertyWebkitBackgroundComposite,
|
| CSSPropertyWebkitBackgroundOrigin,
|
| @@ -1830,9 +1828,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| if (!style->hasAspectRatio())
|
| return cssValuePool().createIdentifierValue(CSSValueNone);
|
| return CSSAspectRatioValue::create(style->aspectRatioNumerator(), style->aspectRatioDenominator());
|
| - case CSSPropertyBackfaceVisibility:
|
| - case CSSPropertyWebkitBackfaceVisibility:
|
| - return cssValuePool().createIdentifierValue((style->backfaceVisibility() == BackfaceVisibilityHidden) ? CSSValueHidden : CSSValueVisible);
|
| case CSSPropertyWebkitBorderImage:
|
| return valueForNinePieceImage(style->borderImage(), *style);
|
| case CSSPropertyBorderImageOutset:
|
|
|