Home | History | Annotate | Download | only in rendering

Lines Matching refs:borderBoxRect

787 IntRect RenderLayerScrollableArea::rectForHorizontalScrollbar(const IntRect& borderBoxRect) const
794 return IntRect(horizontalScrollbarStart(borderBoxRect.x()),
795 borderBoxRect.maxY() - box().borderBottom() - m_hBar->height(),
796 borderBoxRect.width() - (box().borderLeft() + box().borderRight()) - scrollCorner.width(),
800 IntRect RenderLayerScrollableArea::rectForVerticalScrollbar(const IntRect& borderBoxRect) const
807 return IntRect(verticalScrollbarStart(borderBoxRect.x(), borderBoxRect.maxX()),
808 borderBoxRect.y() + box().borderTop(),
810 borderBoxRect.height() - (box().borderTop() + box().borderBottom()) - scrollCorner.height());