| Index: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| index f1bc1a37dbc8ef0ec5dc905eb5b67e31b475a594..3fe146c2d4c00b86f28b0501e1d07f86c8ce119f 100644
|
| --- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -110,7 +110,6 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyCaptionSide,
|
| CSSPropertyClip,
|
| CSSPropertyColor,
|
| - CSSPropertyCursor,
|
| CSSPropertyDirection,
|
| CSSPropertyDisplay,
|
| CSSPropertyEmptyCells,
|
| @@ -1374,22 +1373,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| return cssValuePool().createColorValue(m_allowVisitedStyle ? style->colorIncludingFallback(CSSPropertyColor).rgb() : style->color().rgb());
|
| case CSSPropertyTabSize:
|
| return cssValuePool().createValue(style->tabSize(), CSSPrimitiveValue::CSS_NUMBER);
|
| - case CSSPropertyCursor: {
|
| - RefPtr<CSSValueList> list = nullptr;
|
| - CursorList* cursors = style->cursors();
|
| - if (cursors && cursors->size() > 0) {
|
| - list = CSSValueList::createCommaSeparated();
|
| - for (unsigned i = 0; i < cursors->size(); ++i)
|
| - if (StyleImage* image = cursors->at(i).image())
|
| - list->append(image->cssValue());
|
| - }
|
| - RefPtr<CSSValue> value = cssValuePool().createValue(style->cursor());
|
| - if (list) {
|
| - list->append(value.release());
|
| - return list.release();
|
| - }
|
| - return value.release();
|
| - }
|
| case CSSPropertyDirection:
|
| return cssValuePool().createValue(style->direction());
|
| case CSSPropertyDisplay:
|
|
|