HomeSort by relevance Sort by last modified time
    Searched refs:anchorBox (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SuggestBox.js 100 * @param {!AnchorBox} anchorBox
102 setPosition: function(anchorBox)
104 this._updateBoxPosition(anchorBox);
108 * @param {!AnchorBox=} anchorBox
110 _updateBoxPosition: function(anchorBox)
112 this._anchorBox = anchorBox;
113 anchorBox = anchorBox || this._anchorElement.boxInWindow(window)
    [all...]
Popover.js 56 * @param {!Element|!AnchorBox} anchor
68 * @param {!Element|!AnchorBox} anchor
80 * @param {!Element|!AnchorBox} anchor
141 * @param {!Element|!AnchorBox} anchorElement
159 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window);
163 var roomAbove = anchorBox.y;
164 var roomBelow = totalHeight - anchorBox.y - anchorBox.height;
168 if ((anchorBox.y > newElementPosition.height + arrowHeight + borderRadius) || (arrowDirection === WebInspector.Po (…)
    [all...]
DOMExtension.js 362 function AnchorBox(x, y, width, height)
372 * @return {!AnchorBox}
376 var elementOffset = new AnchorBox();
394 * @return {!AnchorBox}
400 var anchorBox = this.offsetRelativeToWindow(window);
401 anchorBox.width = Math.min(this.offsetWidth, window.innerWidth - anchorBox.x);
402 anchorBox.height = Math.min(this.offsetHeight, window.innerHeight - anchorBox.y);
404 return anchorBox;
    [all...]
JavaScriptSourceFrame.js 283 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
284 anchorBox.highlight = {
289 anchorBox.forSelection = true;
290 return anchorBox;
304 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
306 anchorBox.highlight = {
312 return anchorBox;
315 _resolveObjectForPopover: function(anchorBox, showCallback, objectGroupName
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 111 InlineBox* anchorBox = lastLine->lastChild();
112 if (!anchorBox || !anchorBox->renderer()->style()->isLink())
115 return anchorBox;
RenderDeprecatedFlexibleBox.cpp     [all...]

Completed in 443 milliseconds