Searched refs:ownerElement (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DColorChooserClient.h50 virtual Element& ownerElement() const = 0;
H A DDateTimeChooserClient.h44 virtual Element& ownerElement() const = 0;
H A DBaseChooserOnlyDateAndTimeInputType.h57 virtual Element& ownerElement() const OVERRIDE;
H A DColorInputType.h49 virtual Element& ownerElement() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementRareData.cpp45 CSSStyleDeclaration& ElementRareData::ensureInlineCSSStyleDeclaration(Element* ownerElement) argument
48 m_cssomWrapper = adoptPtrWillBeNoop(new InlineCSSStyleDeclaration(ownerElement));
H A DAttr.idl35 [DeprecateAs=AttributeOwnerElement] readonly attribute Element ownerElement;
H A DDocumentInit.cpp45 Element* ownerElement = frame->deprecatedLocalOwner();
46 if (!ownerElement)
48 return &ownerElement->document();
H A DStyleElement.cpp134 void StyleElement::clearSheet(Element* ownerElement) argument
138 if (ownerElement && m_sheet->isLoading())
139 ownerElement->document().styleEngine()->removePendingSheet(ownerElement);
H A DStyleElement.h62 void clearSheet(Element* ownerElement = 0);
H A DFullscreen.cpp52 for (const Element* owner = document.ownerElement(); owner; owner = owner->document().ownerElement()) {
107 if (const Element* owner = element.document().ownerElement()) {
249 currentDoc = currentDoc->ownerElement() ? &currentDoc->ownerElement()->document() : 0;
275 if (!topElement || topElement != followingDoc->ownerElement()) {
279 from(*currentDoc).pushFullscreenElementStack(*followingDoc->ownerElement(), requestType);
373 if (!newTop && currentDoc->ownerElement()) {
374 currentDoc = &currentDoc->ownerElement()->document();
H A DAttr.h48 Element* ownerElement() const { return m_element; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/web/
H A DColorChooserPopupUIController.h59 virtual Element& ownerElement() OVERRIDE;
H A DDateTimeChooserImpl.h62 virtual Element& ownerElement() OVERRIDE;
H A DColorChooserPopupUIController.cpp141 Element& ColorChooserPopupUIController::ownerElement() function in class:blink::ColorChooserPopupUIController
143 return m_client->ownerElement();
H A DWebPagePopupImpl.cpp163 WebLocalFrameImpl* frame = WebLocalFrameImpl::fromFrame(m_popup->m_popupClient->ownerElement().document().frame());
239 frame->setPagePopupOwner(m_popupClient->ownerElement());
244 if (AXObjectCache* cache = m_popupClient->ownerElement().document().existingAXObjectCache())
245 cache->childrenChanged(&m_popupClient->ownerElement());
249 ASSERT(m_popupClient->ownerElement().document().existingAXObjectCache() == frame->document()->existingAXObjectCache());
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DStyleSheetInvalidationAnalysis.cpp95 static Node* determineScopingNodeForStyleInShadow(HTMLStyleElement* ownerElement, StyleSheetContents* styleSheetContents) argument
97 ASSERT(ownerElement && ownerElement->isInShadowTree());
100 ContainerNode* scope = ownerElement;
107 return ownerElement->containingShadowRoot()->shadowHost();
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DPickerIndicatorElement.h70 virtual Element& ownerElement() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPagePopupClient.h55 virtual Element& ownerElement() = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DRenderLayerCompositor.cpp105 if (HTMLFrameOwnerElement* ownerElement = m_renderView.document().ownerElement()) {
106 if (RenderPart* renderer = ownerElement->renderPart())
117 if (HTMLFrameOwnerElement* ownerElement = m_renderView.document().ownerElement())
118 ownerElement->setNeedsCompositingUpdate();
1094 HTMLFrameOwnerElement* ownerElement = m_renderView.document().ownerElement(); local
1095 ASSERT(ownerElement);
1098 ownerElement
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DViewPainter.cpp54 if (m_renderView.document().ownerElement() || !m_renderView.view())
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.cpp114 if (n->isAttributeNode() && toAttr(n)->ownerElement() == commonAncestor)
180 n = toAttr(n)->ownerElement();
202 node = toAttr(node)->ownerElement();
H A DXPathStep.cpp286 Element* n = toAttr(context)->ownerElement();
299 n = toAttr(context)->ownerElement();
334 for (Node* p = NodeTraversal::next(*toAttr(context)->ownerElement()); p; p = NodeTraversal::next(*p)) {
354 context = toAttr(context)->ownerElement();
423 n = toAttr(context)->ownerElement();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8GCController.cpp91 Node* ownerElement = toAttr(node)->ownerElement(); local
92 if (!ownerElement)
94 node = ownerElement;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBodyElement.cpp168 HTMLFrameOwnerElement* ownerElement = document().ownerElement(); local
169 if (!isHTMLFrameElementBase(ownerElement))
171 HTMLFrameElementBase& ownerFrameElement = toHTMLFrameElementBase(*ownerElement);
H A DHTMLPlugInElement.cpp537 if (document().isPluginDocument() && document().ownerElement())
538 document().ownerElement()->dispatchEvent(Event::create(EventTypeNames::error));
561 AtomicString declaredMimeType = document().isPluginDocument() && document().ownerElement() ?
562 document().ownerElement()->fastGetAttribute(HTMLNames::typeAttr) :

Completed in 1382 milliseconds

123