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 RefPtr<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.get()), positionInParentAfterNode(anchorElement.get()), DOWNSTREAM, endingSelection().isDirectional()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ObjectPopoverHelper.js 65 * @param {!Element} anchorElement
71 function didGetDetails(anchorElement, popoverContentElement, error, response)
92 popover.show(container, anchorElement);
110 var anchorElement = anchorOverride || element;
120 DebuggerAgent.getFunctionDetails(result.objectId, didGetDetails.bind(this, anchorElement, popoverContentElement));
125 popover.show(popoverContentElement, anchorElement);
148 popover.show(popoverContentElement, anchorElement, popoverWidth, popoverHeight);
SuggestBox.js 54 * @param {!Element} anchorElement
58 WebInspector.SuggestBox = function(suggestBoxDelegate, anchorElement, className, maxItemsHeight)
61 this._anchorElement = anchorElement;
71 this._bodyElement = anchorElement.ownerDocument.body;
72 this._element = anchorElement.ownerDocument.createElement("div");
Popover.js 141 * @param {!Element|!AnchorBox} anchorElement
146 _positionElement: function(anchorElement, preferredWidth, preferredHeight, arrowDirection)
159 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window);
HandlerRegistry.js 173 var anchorElement = targetNode.enclosingNodeOrSelfWithClass("webkit-html-resource-link") || targetNode.enclosingNodeOrSelfWithClass("webkit-html-external-link");
174 if (!anchorElement)
177 var resourceURL = anchorElement.href;
TextPrompt.js 422 var anchorElement = document.createElement("span");
423 anchorElement.textContent = "\u200B";
424 textRange.insertNode(anchorElement);
425 var box = anchorElement.boxInWindow(window);
426 anchorElement.remove();
StylesSidebarPane.js 475 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
496 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, anchorElement);
679 * @param {?Element} anchorElement
681 _rebuildSectionsForStyleRules: function(styleRules, usedProperties, anchorElement)
691 this._sectionsContainer.insertBefore(separatorElement, anchorElement);
709 this._sectionsContainer.insertBefore(separatorElement, anchorElement);
730 this._sectionsContainer.insertBefore(section.element, anchorElement);
    [all...]
UIUtils.js     [all...]
  /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 179 virtual Element* anchorElement() const OVERRIDE;
AXObject.h 507 virtual Element* anchorElement() const { return 0; }
AXRenderObject.cpp 477 Element* anchor = anchorElement();
813 if (HTMLAnchorElement* anchor = toHTMLAnchorElement(anchorElement()))
    [all...]
AXNodeObject.cpp 407 // FIXME: Do the continuation search like anchorElement does
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 75 static PassOwnPtr<PrefetchEventHandler> create(HTMLAnchorElement* anchorElement)
77 return adoptPtr(new HTMLAnchorElement::PrefetchEventHandler(anchorElement));
537 HTMLAnchorElement::PrefetchEventHandler::PrefetchEventHandler(HTMLAnchorElement* anchorElement)
538 : m_anchorElement(anchorElement)

Completed in 503 milliseconds