From: Hurnjoo Lee Date: Thu, 26 Sep 2013 07:48:07 +0000 (+0900) Subject: Revert "Apply overflow:scroll when -webkit-overflow-scrolling:touch is applied." X-Git-Tag: 2.2.1_release~178^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2115ec6111366429c71bdad0522c34a10b6ce594;p=framework%2Fweb%2Fwebkit-efl.git Revert "Apply overflow:scroll when -webkit-overflow-scrolling:touch is applied." [Title] Revert "Apply overflow:scroll when -webkit-overflow-scrolling:touch is applied." [Issues] N_SE-53119 [Problem] Header bar is moving at en.clubatleticodemadrid.com [Solution] Revert the following patch. > Apply overflow:scroll when -webkit-overflow-scrolling:touch is applied. > [Title] Apply overflow:scroll when -webkit-overflow-scrolling:touch is applied. > [Issue#] ORANGE-78 > [Problem] -webkit-overflow-scrolling:touch does not support overflow property > when it is applied without overflow:scroll. > [Cause] Not implemented. > [Solution] Support overflow:scroll simultaneously when > -webkit-overflow-scrolling:touch is applied. Change-Id: I321a254710ea9ba41c8423c423a6dd3e4d230655 --- diff --git a/Source/WebCore/css/StyleResolver.cpp b/Source/WebCore/css/StyleResolver.cpp index 18b53b3..a0e3538 100644 --- a/Source/WebCore/css/StyleResolver.cpp +++ b/Source/WebCore/css/StyleResolver.cpp @@ -4026,12 +4026,6 @@ void StyleResolver::applyProperty(CSSPropertyID id, CSSValue* value) if (!primitiveValue) break; m_style->setUseTouchOverflowScrolling(primitiveValue->getIdent() == CSSValueTouch); -#if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION) - if (m_style->useTouchOverflowScrolling()) { - m_style->setOverflowX(OSCROLL); - m_style->setOverflowY(OSCROLL); - } -#endif return; } #endif