Home | History | Annotate | Download | only in page

Lines Matching refs:SCROLLBAR

306     Scrollbar* horizontalBar = horizontalScrollbar();
310 Scrollbar* verticalBar = verticalScrollbar();
430 PassRefPtr<Scrollbar> FrameView::createScrollbar(ScrollbarOrientation orientation)
432 // FIXME: We need to update the scrollbar dynamically as documents change (or as doc elements and bodies get discovered that have custom styles).
435 // Try the <body> element first as a scrollbar source.
437 if (body && body->renderer() && body->renderer()->style()->hasPseudoStyle(SCROLLBAR))
442 if (docElement && docElement->renderer() && docElement->renderer()->style()->hasPseudoStyle(SCROLLBAR))
445 // If we have an owning iframe/frame element, then it can set the custom scrollbar also.
447 if (frameRenderer && frameRenderer->style()->hasPseudoStyle(SCROLLBAR))
450 // Nobody set a custom style, so we just use a native scrollbar.
906 // Now set our scrollbar state for the layout.
921 setVerticalScrollbarMode(ScrollbarAlwaysOn); // This causes a vertical scrollbar to appear.
924 setHorizontalScrollbarMode(ScrollbarAlwaysOff); // This causes a horizontal scrollbar to disappear.
2156 void FrameView::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
2160 dirtyRect.move(scrollbar->x(), scrollbar->y());
2253 // If we have an owning iframe/frame element, then it can set the custom scrollbar also.
2297 Scrollbar* scrollbar = static_cast<Scrollbar*>(widget);
2298 if (scrollbar->isCustomScrollbar())