Home | History | Annotate | Download | only in scroll

Lines Matching defs:cornerRect

741 static void positionScrollCornerLayer(GraphicsLayer* graphicsLayer, const IntRect& cornerRect)
745 graphicsLayer->setDrawsContent(!cornerRect.isEmpty());
746 graphicsLayer->setPosition(cornerRect.location());
747 if (cornerRect.size() != graphicsLayer->size())
749 graphicsLayer->setSize(cornerRect.size());
786 IntRect cornerRect;
789 return cornerRect;
792 cornerRect.unite(IntRect(shouldPlaceVerticalScrollbarOnLeft() ? 0 : m_horizontalScrollbar->width(),
799 cornerRect.unite(IntRect(shouldPlaceVerticalScrollbarOnLeft() ? 0 : (width() - m_verticalScrollbar->width()),
805 return cornerRect;
824 void ScrollView::paintScrollCorner(GraphicsContext* context, const IntRect& cornerRect)
826 ScrollbarTheme::theme()->paintScrollCorner(context, cornerRect);