Home | History | Annotate | Download | only in page

Lines Matching refs:SCROLLBAR

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