| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index 44ec491ce6448b5be7d3bc2e17019f32c14fcabf..dc0b55ce0f6e13556a78f4c4f32943ed96b81d23 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -247,7 +247,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyWebkitPerspective,
|
| CSSPropertyPerspectiveOrigin,
|
| CSSPropertyWebkitPerspectiveOrigin,
|
| - CSSPropertyWebkitPrintColorAdjust,
|
| CSSPropertyWebkitRtlOrdering,
|
| CSSPropertyWebkitTapHighlightColor,
|
| CSSPropertyWebkitTextDecorationsInEffect,
|
| @@ -1449,8 +1448,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| return cssValuePool().createValue(style->captionSide());
|
| case CSSPropertyColor:
|
| return cssValuePool().createColorValue(m_allowVisitedStyle ? style->colorIncludingFallback(CSSPropertyColor).rgb() : style->color().rgb());
|
| - case CSSPropertyWebkitPrintColorAdjust:
|
| - return cssValuePool().createValue(style->printColorAdjust());
|
| case CSSPropertyTabSize:
|
| return cssValuePool().createValue(style->tabSize(), CSSPrimitiveValue::CSS_NUMBER);
|
| case CSSPropertyCursor: {
|
|
|