Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_hBar

1703     Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_hBar : m_vBar).get();
1871 if (scrollbar == m_hBar.get())
1937 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar;
1956 if (hasScrollbar == (m_hBar != 0))
1960 m_hBar = createScrollbar(HorizontalScrollbar);
1965 if (m_hBar)
1966 m_hBar->styleChanged();
1988 if (m_hBar)
1989 m_hBar->styleChanged();
2009 if (!m_hBar || (m_hBar->isOverlayScrollbar() && relevancy == IgnoreOverlayScrollbarSize))
2011 return m_hBar->height();
2024 return m_hBar || m_vBar || m_scrollCorner || renderer()->style()->resize() != RESIZE_NONE;
2038 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
2054 if (m_hBar)
2055 m_hBar->setFrameRect(IntRect(absBounds.x() + box->borderLeft(),
2056 absBounds.maxY() - box->borderBottom() - m_hBar->height(),
2058 m_hBar->height()));
2062 if (m_hBar) {
2063 layer->setPosition(IntPoint(m_hBar->frameRect().x() - tx, m_hBar->frameRect().y() - ty));
2064 layer->setSize(m_hBar->frameRect().size());
2066 layer->setDrawsContent(m_hBar);
2230 bool haveHorizontalBar = m_hBar;
2235 m_hBar->setEnabled(horizontalOverflow);
2281 if (m_hBar && box->hasAutoHorizontalScrollbar())
2282 m_hBar->setEnabled(true);
2287 if (m_hBar) {
2290 m_hBar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep);
2291 m_hBar->setProportion(clientWidth, m_scrollWidth);
2309 bool hasOverflowScroll = ((horizontalOverflow && m_hBar) || (verticalOverflow && m_vBar));
2359 if (m_hBar
2364 m_hBar->paint(context, damageRect);
2441 if (!hasOverlayScrollbars() && (m_vBar || m_hBar)) {
2470 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
2489 box->height() - (box->borderTop() + box->borderBottom()) - (m_hBar ? m_hBar->height() : resizeControlSize));
2497 if (m_hBar) {
2499 box->height() - box->borderBottom() - m_hBar->height(),
2501 m_hBar->height());
2503 result.setScrollbar(m_hBar.get());
4108 if (m_hBar)
4109 m_hBar->styleChanged();