| Index: Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/Source/core/css/ComputedStyleCSSValueMapping.cpp b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index a01987a08007707275c5b9af054df2ca4ca30c90..debdea9d951bc69a18b66825e306ce9b696c3468 100644
|
| --- a/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -656,23 +656,6 @@ static LayoutRect sizingBox(const LayoutObject* layoutObject)
|
| return box->style()->boxSizing() == BORDER_BOX ? box->borderBoxRect() : box->computedCSSContentBoxRect();
|
| }
|
|
|
| -static PassRefPtrWillBeRawPtr<CSSValue> scrollBlocksOnFlagsToCSSValue(WebScrollBlocksOn scrollBlocksOn)
|
| -{
|
| - RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparated();
|
| -
|
| - if (scrollBlocksOn == WebScrollBlocksOnNone)
|
| - return cssValuePool().createIdentifierValue(CSSValueNone);
|
| -
|
| - if (scrollBlocksOn & WebScrollBlocksOnStartTouch)
|
| - list->append(cssValuePool().createIdentifierValue(CSSValueStartTouch));
|
| - if (scrollBlocksOn & WebScrollBlocksOnWheelEvent)
|
| - list->append(cssValuePool().createIdentifierValue(CSSValueWheelEvent));
|
| - if (scrollBlocksOn & WebScrollBlocksOnScrollEvent)
|
| - list->append(cssValuePool().createIdentifierValue(CSSValueScrollEvent));
|
| - ASSERT(list->length());
|
| - return list.release();
|
| -}
|
| -
|
| static PassRefPtrWillBeRawPtr<CSSValue> renderTextDecorationFlagsToCSSValue(int textDecoration)
|
| {
|
| // Blink value is ignored.
|
| @@ -1936,8 +1919,6 @@ PassRefPtrWillBeRawPtr<CSSValue> ComputedStyleCSSValueMapping::get(CSSPropertyID
|
| return cssValuePool().createValue(style.rubyPosition());
|
| case CSSPropertyScrollBehavior:
|
| return cssValuePool().createValue(style.scrollBehavior());
|
| - case CSSPropertyScrollBlocksOn:
|
| - return scrollBlocksOnFlagsToCSSValue(style.scrollBlocksOn());
|
| case CSSPropertyTableLayout:
|
| return cssValuePool().createValue(style.tableLayout());
|
| case CSSPropertyTextAlign:
|
|
|