Home | History | Annotate | Download | only in rendering

Lines Matching refs:overflowRect

285     LayoutRect overflowRect(portionRect);
289 overflowRect.shiftXEdgeTo(min(flowThread()->visualOverflowRect().x(), portionRect.x()));
292 overflowRect.shiftXEdgeTo(portionRect.x() - colGap / 2);
296 overflowRect.shiftMaxXEdgeTo(max(flowThread()->visualOverflowRect().maxX(), portionRect.maxX()));
299 overflowRect.shiftMaxXEdgeTo(portionRect.maxX() + colGap / 2);
304 overflowRect.shiftYEdgeTo(min(flowThread()->visualOverflowRect().y(), portionRect.y()));
307 overflowRect.shiftYEdgeTo(portionRect.y() - colGap / 2);
311 overflowRect.shiftMaxYEdgeTo(max(flowThread()->visualOverflowRect().maxY(), portionRect.maxY()));
314 overflowRect.shiftMaxYEdgeTo(portionRect.maxY() + colGap / 2);
317 return overflowRectForFlowThreadPortion(overflowRect, isFirstRegion() && isFirstColumn, isLastRegion() && isLastColumn);