Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_vBar

1681     Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_hBar : m_vBar).get();
1846 if (scrollbar == m_vBar.get())
1859 if (scrollbar == m_vBar.get()) {
1874 if (scrollbar == m_vBar.get())
1915 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar;
1945 if (m_vBar)
1946 m_vBar->styleChanged();
1957 if (hasScrollbar == (m_vBar != 0))
1961 m_vBar = createScrollbar(VerticalScrollbar);
1968 if (m_vBar)
1969 m_vBar->styleChanged();
1980 if (!m_vBar || (m_vBar->isOverlayScrollbar() && relevancy == IgnoreOverlayScrollbarSize))
1982 return m_vBar->width();
2002 return m_hBar || m_vBar || m_scrollCorner || renderer()->style()->resize() != RESIZE_NONE;
2016 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
2026 if (m_vBar)
2027 m_vBar->setFrameRect(IntRect(absBounds.maxX() - box->borderRight() - m_vBar->width(),
2029 m_vBar->width(),
2047 if (m_vBar) {
2048 layer->setPosition(IntPoint(m_vBar->frameRect().x() - tx, m_vBar->frameRect().y() - ty));
2049 layer->setSize(m_vBar->frameRect().size());
2051 layer->setDrawsContent(m_vBar);
2209 bool haveVerticalBar = m_vBar;
2215 m_vBar->setEnabled(verticalOverflow);
2261 if (m_vBar && box->hasAutoVerticalScrollbar())
2262 m_vBar->setEnabled(true);
2271 if (m_vBar) {
2274 m_vBar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep);
2275 m_vBar->setProportion(clientHeight, m_scrollHeight);
2287 bool hasOverflowScroll = ((horizontalOverflow && m_hBar) || (verticalOverflow && m_vBar));
2343 if (m_vBar
2348 m_vBar->paint(context, damageRect);
2419 if (!hasOverlayScrollbars() && (m_vBar || m_hBar)) {
2448 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
2463 if (m_vBar) {
2464 IntRect vBarRect(box->width() - box->borderRight() - m_vBar->width(),
2466 m_vBar->width(),
2469 result.setScrollbar(m_vBar.get());
2478 box->width() - (box->borderLeft() + box->borderRight()) - (m_vBar ? m_vBar->width() : resizeControlSize),
4098 if (m_vBar)
4099 m_vBar->styleChanged();