Searched defs:anchorBox (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DPopover.js162 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window); variable
163 anchorBox = anchorBox.relativeToElement(container);
167 var roomAbove = anchorBox.y;
168 var roomBelow = totalHeight - anchorBox.y - anchorBox.height;
172 if ((anchorBox.y > newElementPosition.height + arrowHeight + borderRadius) || (arrowDirection === WebInspector.Popover.Orientation.Bottom))
173 newElementPosition.y = anchorBox.y - newElementPosition.height - arrowHeight;
176 newElementPosition.height = anchorBox.y - borderRadius * 2 - arrowHeight;
185 newElementPosition.y = anchorBox
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DJavaScriptSourceFrame.js509 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
510 anchorBox.highlight = {
515 anchorBox.forSelection = true;
516 return anchorBox;
532 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
534 anchorBox.highlight = {
540 return anchorBox;
543 _resolveObjectForPopover: function(anchorBox, showCallback, objectGroupName)
550 var lineNumber = anchorBox.highlight.lineNumber;
551 var startHighlight = anchorBox
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp933 InlineBox* anchorBox = lastLine->lastChild(); local
934 if (anchorBox && anchorBox->renderer().style()->isLink())
935 totalWidth = anchorBox->logicalWidth() + font.width(constructTextRun(this, font, ellipsisAndSpace, 2, style(), style()->direction()));
937 anchorBox = 0;
960 lastVisibleLine->placeEllipsis(anchorBox ? ellipsisAndSpaceStr : ellipsisStr, leftToRight, blockLeftEdge.toFloat(), blockRightEdge.toFloat(), totalWidth, anchorBox);

Completed in 1606 milliseconds