| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index 811de98546ebf1069ebf7cd850620c94c5d84412..3ba509a04f8998c4ae8de6f50772612df193d250 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -178,7 +178,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyUnicodeBidi,
|
| CSSPropertyVerticalAlign,
|
| CSSPropertyWhiteSpace,
|
| - CSSPropertyWidows,
|
| CSSPropertyWidth,
|
| CSSPropertyWillChange,
|
| CSSPropertyWordBreak,
|
| @@ -1707,10 +1706,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| return nullptr;
|
| case CSSPropertyWhiteSpace:
|
| return cssValuePool().createValue(style->whiteSpace());
|
| - case CSSPropertyWidows:
|
| - if (style->hasAutoWidows())
|
| - return cssValuePool().createIdentifierValue(CSSValueAuto);
|
| - return cssValuePool().createValue(style->widows(), CSSPrimitiveValue::CSS_NUMBER);
|
| case CSSPropertyWidth:
|
| if (renderer) {
|
| // According to http://www.w3.org/TR/CSS2/visudet.html#the-width-property,
|
|
|