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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
CreateLinkCommand.cpp 45 RefPtrWillBeRawPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
46 anchorElement->setHref(AtomicString(m_url));
49 applyStyledElement(anchorElement.get());
51 insertNodeAt(anchorElement.get(), endingSelection().start());
53 appendNode(textNode.get(), anchorElement.get());
54 setEndingSelection(VisibleSelection(positionInParentBeforeNode(*anchorElement), positionInParentAfterNode(*anchorElement), DOWNSTREAM, endingSelection().isDirectional()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPopoverHelper.js 66 * @param {!Element} anchorElement
71 function didGetDetails(target, anchorElement, popoverContentElement, response)
92 popover.show(container, anchorElement);
110 var anchorElement = anchorOverride || element;
123 result.functionDetails(didGetDetails.bind(this, result.target(), anchorElement, popoverContentElement));
126 popover.show(popoverContentElement, anchorElement);
151 popover.show(popoverContentElement, anchorElement, popoverWidth, popoverHeight);
HandlerRegistry.js 175 var anchorElement = targetNode.enclosingNodeOrSelfWithClass("webkit-html-resource-link") || targetNode.enclosingNodeOrSelfWithClass("webkit-html-external-link");
176 if (!anchorElement)
179 var resourceURL = anchorElement.href;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.h 57 virtual Element* anchorElement() const OVERRIDE;
AXImageMapLink.cpp 86 return anchorElement();
89 Element* AXImageMapLink::anchorElement() const
AXNodeObject.h 188 virtual Element* anchorElement() const OVERRIDE;
AXRenderObject.h 182 virtual Element* anchorElement() const OVERRIDE;
AXObject.h 511 virtual Element* anchorElement() const { return 0; }
AXRenderObject.cpp 478 Element* anchor = anchorElement();
828 if (HTMLAnchorElement* anchor = toHTMLAnchorElement(anchorElement()))
    [all...]
AXNodeObject.cpp 417 // FIXME: Do the continuation search like anchorElement does
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Popover.js 142 * @param {!Element|!AnchorBox} anchorElement
147 _positionElement: function(anchorElement, preferredWidth, preferredHeight, arrowDirection)
162 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window);
TextPrompt.js 406 var anchorElement = document.createElement("span");
407 anchorElement.textContent = "\u200B";
408 textRange.insertNode(anchorElement);
409 var box = anchorElement.boxInWindow(window);
410 anchorElement.remove();
ViewportControl.js 331 var anchorElement = null;
334 anchorElement = this._anchorSelection.node;
338 anchorElement = this._topGapElement;
340 anchorElement = this._bottomGapElement;
357 selection.setBaseAndExtent(anchorElement, anchorOffset, headElement, headOffset);
UIUtils.js 805 var anchorElement = firstTextNode.nextSibling;
807 firstTextNode.parentElement.insertBefore(highlightNode, anchorElement);
808 changes.push({ node: highlightNode, type: "added", nextSibling: anchorElement, parent: firstTextNode.parentElement });
    [all...]
  /external/chromium_org/ui/webui/resources/js/cr/ui/
position_util.js 210 * @param {!HTMLElement} anchorElement The element that the popup is anchored
217 function positionPopupAroundElement(anchorElement, popupElement, type,
219 var anchorRect = anchorElement.getBoundingClientRect();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
StylesSidebarPane.js 621 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
642 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, anchorElement);
825 * @param {?Element} anchorElement
827 _rebuildSectionsForStyleRules: function(styleRules, usedProperties, anchorElement)
    [all...]

Completed in 229 milliseconds