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

123

/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/accessibility/
H A DAXNodeObject.cpp1644 if (HTMLFrameOwnerElement* owner = document->ownerElement()) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1588 || (document.ownerElement() && document.ensureStyleResolver().hasViewportDependentMediaQueries());
/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/dom/
H A DAttr.h48 Element* ownerElement() const { return m_element; } function in class:blink::FINAL
H A DAttr.idl35 [DeprecateAs=AttributeOwnerElement] readonly attribute Element ownerElement;
H A DDocument.cpp1036 if (RefPtrWillBeRawPtr<Element> ownerElement = attr->ownerElement())
1037 ownerElement->removeAttributeNode(attr, exceptionState);
1923 if (HTMLFrameOwnerElement* owner = ownerElement())
2556 if (!ownerElement() || (ownerElement()->renderer() && !ownerElement()->renderer()->needsLayout())) {
3968 HTMLFrameOwnerElement* Document::ownerElement() const function in class:blink::Document
3978 if (!ownerElement())
4523 for (HTMLFrameOwnerElement* element = doc->ownerElement(); elemen
[all...]
H A DDocument.h711 HTMLFrameOwnerElement* ownerElement() const;
H A DDocumentInit.cpp45 Element* ownerElement = frame->deprecatedLocalOwner();
46 if (!ownerElement)
48 return &ownerElement->document();
H A DElement.cpp1815 if (attrNode->ownerElement()) {
1867 if (attr->ownerElement() != this) {
2644 return element->parentElement() ? element->parentElement() : element->document().ownerElement();
H A DElementRareData.cpp45 CSSStyleDeclaration& ElementRareData::ensureInlineCSSStyleDeclaration(Element* ownerElement) argument
48 m_cssomWrapper = adoptPtrWillBeNoop(new InlineCSSStyleDeclaration(ownerElement));
H A DElementRareData.h69 CSSStyleDeclaration& ensureInlineCSSStyleDeclaration(Element* ownerElement);
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 DNode.cpp821 return document().ownerElement() && document().ownerElement()->isInert();
1295 if (attr->ownerElement())
1296 return attr->ownerElement()->isDefaultNamespace(namespaceURI);
1329 context = toAttr(this)->ownerElement();
1385 if (attr->ownerElement())
1386 return attr->ownerElement()->lookupNamespaceURI(prefix);
1498 const Node* start1 = attr1 ? attr1->ownerElement() : this;
1499 const Node* start2 = attr2 ? attr2->ownerElement() : otherNode;
1517 const Element* owner1 = attr1->ownerElement();
[all...]
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 DStyleEngine.cpp215 if (entry->injectedFrames() == InjectStyleInTopFrameOnly && document().ownerElement())
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.cpp1344 HTMLFrameOwnerElement* ownerElement = m_frame->deprecatedLocalOwner();
1345 if (!ownerElement)
1347 ContainerNode* ownerElementParent = ownerElement->parentNode();
1356 unsigned ownerElementNodeIndex = ownerElement->nodeIndex();
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DEventHandlerRegistry.cpp233 for (Document* doc = &node->document(); doc; doc = doc->ownerElement() ? &doc->ownerElement()->document() : 0) {
H A DFrameView.cpp175 HTMLFrameOwnerElement* ownerElement = m_frame->deprecatedLocalOwner(); local
176 if (ownerElement && ownerElement->ownedWidget() == this)
177 ownerElement->setWidget(nullptr);
228 Element* ownerElement = m_frame->deprecatedLocalOwner(); local
229 if (ownerElement && (isHTMLFrameElement(*ownerElement) || isHTMLIFrameElement(*ownerElement))) {
230 HTMLFrameElementBase* frameElt = toHTMLFrameElementBase(ownerElement);
2136 HTMLFrameOwnerElement* ownerElement
[all...]
H A DLocalFrame.cpp182 HTMLFrameOwnerElement* owner = doc->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) :
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseChooserOnlyDateAndTimeInputType.cpp100 Element& BaseChooserOnlyDateAndTimeInputType::ownerElement() const function in class:blink::BaseChooserOnlyDateAndTimeInputType
H A DBaseChooserOnlyDateAndTimeInputType.h57 virtual Element& ownerElement() const OVERRIDE;

Completed in 1734 milliseconds

123