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)
91 popover.show(container, anchorElement);
109 var anchorElement = anchorOverride || element;
119 result.functionDetails(didGetDetails.bind(this, result.target(), anchorElement, popoverContentElement));
124 popover.show(popoverContentElement, anchorElement);
149 popover.show(popoverContentElement, anchorElement, popoverWidth, popoverHeight);
HandlerRegistry.js 170 var anchorElement = targetNode.enclosingNodeOrSelfWithClass("webkit-html-resource-link") || targetNode.enclosingNodeOrSelfWithClass("webkit-html-external-link");
171 if (!anchorElement)
174 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 506 virtual Element* anchorElement() const { return 0; }
AXRenderObject.cpp 469 Element* anchor = anchorElement();
810 if (HTMLAnchorElement* anchor = toHTMLAnchorElement(anchorElement()))
    [all...]
AXNodeObject.cpp 410 // FIXME: Do the continuation search like anchorElement does
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Popover.js 141 * @param {!Element|!AnchorBox} anchorElement
146 _positionElement: function(anchorElement, preferredWidth, preferredHeight, arrowDirection)
161 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window);
ViewportControl.js 305 var anchorElement = null;
308 anchorElement = this._anchorSelection.node;
312 anchorElement = this._topGapElement;
314 anchorElement = this._bottomGapElement;
331 selection.setBaseAndExtent(anchorElement, anchorOffset, headElement, headOffset);
TextPrompt.js 405 var anchorElement = document.createElement("span");
406 anchorElement.textContent = "\u200B";
407 textRange.insertNode(anchorElement);
408 var box = anchorElement.boxInWindow(window);
409 anchorElement.remove();
UIUtils.js 766 var anchorElement = firstTextNode.nextSibling;
768 firstTextNode.parentElement.insertBefore(highlightNode, anchorElement);
769 changes.push({ node: highlightNode, type: "added", nextSibling: anchorElement, parent: firstTextNode.parentElement });
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 74 static PassOwnPtrWillBeRawPtr<PrefetchEventHandler> create(HTMLAnchorElement* anchorElement)
76 return adoptPtrWillBeNoop(new HTMLAnchorElement::PrefetchEventHandler(anchorElement));
422 HTMLAnchorElement::PrefetchEventHandler::PrefetchEventHandler(HTMLAnchorElement* anchorElement)
423 : m_anchorElement(anchorElement)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
StylesSidebarPane.js 510 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
531 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, anchorElement);
715 * @param {?Element} anchorElement
717 _rebuildSectionsForStyleRules: function(styleRules, usedProperties, anchorElement)
727 this._sectionsContainer.insertBefore(separatorElement, anchorElement);
745 this._sectionsContainer.insertBefore(separatorElement, anchorElement);
766 this._sectionsContainer.insertBefore(section.element, anchorElement);
    [all...]

Completed in 296 milliseconds