Home
last modified time | relevance | path

Searched refs:clientBox (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
DCompositedLayerMapping.cpp832 IntRect clientBox = enclosingIntRect(renderBox->clientBoxRect()); in updateScrollingLayerGeometry() local
835 …m_scrollingLayer->setPosition(FloatPoint(clientBox.location() - localCompositingBounds.location() … in updateScrollingLayerGeometry()
836 m_scrollingLayer->setSize(clientBox.size()); in updateScrollingLayerGeometry()
839 m_scrollingLayer->setOffsetFromRenderer(-toIntSize(clientBox.location())); in updateScrollingLayerGeometry()
844 m_childClippingMaskLayer->setOffsetFromRenderer(toIntSize(clientBox.location())); in updateScrollingLayerGeometry()
853 IntSize scrollingContentsOffset = toIntSize(clientBox.location() - adjustedScrollOffset); in updateScrollingLayerGeometry()
878 IntRect clientBox = enclosingIntRect(renderBox->clientBoxRect()); in updateChildClippingMaskLayerGeometry() local
882 m_childClippingMaskLayer->setOffsetFromRenderer(toIntSize(clientBox.location())); in updateChildClippingMaskLayerGeometry()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp4182 LayoutRect clientBox = noOverflowRect(); in addLayoutOverflow() local
4183 if (clientBox.contains(rect) || rect.isEmpty()) in addLayoutOverflow()
4203 overflowRect.shiftYEdgeTo(max(overflowRect.y(), clientBox.y())); in addLayoutOverflow()
4205 overflowRect.shiftMaxYEdgeTo(min(overflowRect.maxY(), clientBox.maxY())); in addLayoutOverflow()
4207 overflowRect.shiftXEdgeTo(max(overflowRect.x(), clientBox.x())); in addLayoutOverflow()
4209 overflowRect.shiftMaxXEdgeTo(min(overflowRect.maxX(), clientBox.maxX())); in addLayoutOverflow()
4213 if (clientBox.contains(overflowRect) || overflowRect.isEmpty()) in addLayoutOverflow()
4218 m_overflow = adoptPtr(new RenderOverflow(clientBox, borderBoxRect())); in addLayoutOverflow()