HomeSort by relevance Sort by last modified time
    Searched full:clippingbox (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/inspector/front-end/
Popup.js 109 var clippingBox = {x: 0, y: 0, width: targetDocumentElement.clientWidth, height: targetDocumentElement.clientHeight};
119 if (anchorBox.y - elementBox.height >= clippingBox.y)
122 newElementPosition.y = Math.min(anchorBox.y + anchorBox.height, Math.max(clippingBox.y, clippingBox.y + clippingBox.height - elementBox.height));
124 if (anchorBox.x + elementBox.height <= clippingBox.x + clippingBox.height)
127 newElementPosition.x = Math.max(clippingBox.x, clippingBox.x + clippingBox.height - elementBox.height)
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 304 IntRect clippingBox;
306 clippingBox = toRenderBox(renderer())->overflowClipRect(0, 0);
307 m_clippingLayer->setPosition(FloatPoint() + (clippingBox.location() - localCompositingBounds.location()));
308 m_clippingLayer->setSize(clippingBox.size());
309 m_clippingLayer->setOffsetFromRenderer(clippingBox.location() - IntPoint());
358 foregroundPosition = FloatPoint() + (localCompositingBounds.location() - clippingBox.location());
359 foregroundSize = FloatSize(clippingBox.size());
360 foregroundOffset = clippingBox.location() - IntPoint();
    [all...]

Completed in 35 milliseconds