| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 181f92ddd965517526cf7971368527972ce0e597..186218907f563822f5c799949e76b056406e391c 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -227,7 +227,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyWebkitBackgroundComposite,
|
| CSSPropertyWebkitBackgroundOrigin,
|
| CSSPropertyWebkitBackgroundSize,
|
| - CSSPropertyWebkitBorderFit,
|
| CSSPropertyWebkitBorderHorizontalSpacing,
|
| CSSPropertyWebkitBorderImage,
|
| CSSPropertyWebkitBorderVerticalSpacing,
|
| @@ -1990,10 +1989,6 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValu
|
| if (style->hyphenationString().isNull())
|
| return cssValuePool().createIdentifierValue(CSSValueAuto);
|
| return cssValuePool().createValue(style->hyphenationString(), CSSPrimitiveValue::CSS_STRING);
|
| - case CSSPropertyWebkitBorderFit:
|
| - if (style->borderFit() == BorderFitBorder)
|
| - return cssValuePool().createIdentifierValue(CSSValueBorder);
|
| - return cssValuePool().createIdentifierValue(CSSValueLines);
|
| case CSSPropertyImageRendering:
|
| return CSSPrimitiveValue::create(style->imageRendering());
|
| case CSSPropertyIsolation:
|
|
|