Home
last modified time | relevance | path

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

/external/webkit/WebCore/inspector/front-end/
DPopup.js115 …var anchorBox = {x: anchorPosition.x, y: anchorPosition.y, width: anchorElement.offsetWidth, heigh… variable
119 if (anchorBox.y - elementBox.height >= clippingBox.y)
120 newElementPosition.y = anchorBox.y - elementBox.height;
122 …newElementPosition.y = Math.min(anchorBox.y + anchorBox.height, Math.max(clippingBox.y, clippingBo…
124 if (anchorBox.x + elementBox.height <= clippingBox.x + clippingBox.height)
125 newElementPosition.x = anchorBox.x;
/external/webkit/WebCore/rendering/
DRenderFlexibleBox.cpp732 InlineBox* anchorBox = lastLine->lastChild(); in layoutVerticalBox() local
733 … if (anchorBox && anchorBox->renderer()->node() && anchorBox->renderer()->node()->isLink()) in layoutVerticalBox()
734 totalWidth = anchorBox->width() + font.width(TextRun(ellipsisAndSpace, 2)); in layoutVerticalBox()
736 anchorBox = 0; in layoutVerticalBox()
761 …ibleLine->placeEllipsis(anchorBox ? ellipsisAndSpaceStr : ellipsisStr, ltr, blockLeftEdge, blockRi… in layoutVerticalBox()