Home
last modified time | relevance | path

Searched refs:hScroll (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebKit/mac/WebView/
DWebDynamicScrollBarsView.mm49 WebCore::ScrollbarMode hScroll; field
116 if (flag && _private->hScroll == ScrollbarAlwaysOff)
117 _private->hScroll = ScrollbarAuto;
118 else if (!flag && _private->hScroll != ScrollbarAlwaysOff)
119 _private->hScroll = ScrollbarAlwaysOff;
262 if (_private->hScroll != ScrollbarAuto)
263 newHasHorizontalScroller = (_private->hScroll == ScrollbarAlwaysOn);
267 …|| _private->suppressLayout || _private->suppressScrollers || (_private->hScroll != ScrollbarAuto …
304 if (_private->hScroll == ScrollbarAuto) {
320 if (!newHasVerticalScroller && hasVerticalScroller && _private->hScroll != ScrollbarAlwaysOn)
[all …]
/external/webkit/Source/WebCore/platform/
DScrollView.cpp494 ScrollbarMode hScroll = m_horizontalScrollbarMode; in updateScrollbars() local
497 if (hScroll != ScrollbarAuto) in updateScrollbars()
498 newHasHorizontalScrollbar = (hScroll == ScrollbarAlwaysOn); in updateScrollbars()
502 if (m_scrollbarsSuppressed || (hScroll != ScrollbarAuto && vScroll != ScrollbarAuto)) { in updateScrollbars()
513 if (hScroll == ScrollbarAuto) { in updateScrollbars()
528 if (!newHasVerticalScrollbar && hasVerticalScrollbar && hScroll != ScrollbarAlwaysOn) in updateScrollbars()