| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index df95d1be9e3e7a3dbda69d727b44259bd9fabb55..d07f1e862b0ebddbbcb7d2eca3d0252d39b4fe01 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -141,7 +141,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyObjectFit,
|
| CSSPropertyObjectPosition,
|
| CSSPropertyOpacity,
|
| - CSSPropertyOrphans,
|
| CSSPropertyOutlineColor,
|
| CSSPropertyOutlineOffset,
|
| CSSPropertyOutlineStyle,
|
| @@ -1568,10 +1567,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| Pair::KeepIdenticalValues));
|
| case CSSPropertyOpacity:
|
| return cssValuePool().createValue(style->opacity(), CSSPrimitiveValue::CSS_NUMBER);
|
| - case CSSPropertyOrphans:
|
| - if (style->hasAutoOrphans())
|
| - return cssValuePool().createIdentifierValue(CSSValueAuto);
|
| - return cssValuePool().createValue(style->orphans(), CSSPrimitiveValue::CSS_NUMBER);
|
| case CSSPropertyOutlineColor:
|
| return m_allowVisitedStyle ? cssValuePool().createColorValue(style->colorIncludingFallback(CSSPropertyOutlineColor).rgb()) : currentColorOrValidColor(*style, style->outlineColor());
|
| case CSSPropertyOutlineOffset:
|
|
|