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

/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedLayerMapping.cpp892 IntRect clientBox = enclosingIntRect(renderBox->clientBoxRect()); local
895 m_scrollingLayer->setPosition(FloatPoint(clientBox.location() - localCompositingBounds.location() + roundedIntSize(m_owningLayer.subpixelAccumulation())));
896 m_scrollingLayer->setSize(clientBox.size());
899 m_scrollingLayer->setOffsetFromRenderer(-toIntSize(clientBox.location()));
904 m_childClippingMaskLayer->setOffsetFromRenderer(toIntSize(clientBox.location()));
913 IntSize scrollingContentsOffset = toIntSize(clientBox.location() - adjustedScrollOffset);
938 IntRect clientBox = enclosingIntRect(renderBox->clientBoxRect()); local
942 m_childClippingMaskLayer->setOffsetFromRenderer(toIntSize(clientBox.location()));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.cpp4054 LayoutRect clientBox = noOverflowRect(); local
4055 if (clientBox.contains(rect) || rect.isEmpty())
4075 overflowRect.shiftYEdgeTo(std::max(overflowRect.y(), clientBox.y()));
4077 overflowRect.shiftMaxYEdgeTo(std::min(overflowRect.maxY(), clientBox.maxY()));
4079 overflowRect.shiftXEdgeTo(std::max(overflowRect.x(), clientBox.x()));
4081 overflowRect.shiftMaxXEdgeTo(std::min(overflowRect.maxX(), clientBox.maxX()));
4085 if (clientBox.contains(overflowRect) || overflowRect.isEmpty())
4090 m_overflow = adoptPtr(new RenderOverflow(clientBox, borderBoxRect()));

Completed in 205 milliseconds