Searched defs:documentElement (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DStyleMedia.cpp58 Element* documentElement = document->documentElement(); local
59 if (!documentElement)
66 RefPtr<RenderStyle> rootStyle = styleSelector->styleForElement(documentElement, 0 /*defaultParent*/, false /*allowSharing*/, true /*resolveForRootDefault*/);
/external/webkit/Source/WebKit/chromium/src/
H A DWebDocument.cpp89 WebElement WebDocument::documentElement() const function in class:WebKit::WebDocument
91 return WebElement(constUnwrap<Document>()->documentElement());
H A DWebPageSerializerImpl.cpp517 Element* documentElement = document->documentElement(); local
518 if (documentElement)
519 buildContentForNode(documentElement, &param);
/external/webkit/Source/WebCore/dom/
H A DDOMImplementation.cpp255 RefPtr<Node> documentElement; local
257 documentElement = doc->createElementNS(namespaceURI, qualifiedName, ec);
275 if (documentElement)
276 doc->parserAddChild(documentElement.release());
H A DDocument.h311 Element* documentElement() const function in class:WebCore::Document
H A DXMLDocumentParser.cpp297 RefPtr<Element> documentElement = document->documentElement(); local
298 if (!documentElement) {
303 documentElement = body.get();
306 else if (documentElement->namespaceURI() == SVGNames::svgNamespaceURI) {
310 body->appendChild(documentElement, ec);
312 documentElement = body.get();
320 body->appendChild(documentElement, ec);
322 documentElement = body.get();
327 documentElement
[all...]
H A Dxml_expat_tokenizer.cpp851 Node* documentElement = doc->documentElement(); local
852 if (!documentElement) {
857 documentElement = body.get();
861 documentElement->insertBefore(reportElement, documentElement->firstChild(), ec);
/external/webkit/Source/WebKit/qt/tests/qwebelement/
H A Dtst_qwebelement.cpp58 void documentElement();
106 QWebElement body = m_mainFrame->documentElement();
119 QWebElement body = m_mainFrame->documentElement();
130 QWebElement body = m_mainFrame->documentElement();
196 QWebElement body = m_mainFrame->documentElement();
199 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0);
266 QWebElement body = m_mainFrame->documentElement();
281 QWebElement body = m_mainFrame->documentElement();
316 QWebElement body = m_mainFrame->documentElement();
332 QWebElement body = m_mainFrame->documentElement();
418 void tst_QWebElement::documentElement() function in class:tst_QWebElement
[all...]
/external/webkit/Source/WebKit/wx/
H A DWebFrame.cpp178 WebCore::Element *documentElement = m_impl->frame->document()->documentElement(); local
179 return documentElement->innerText();
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShell.cpp316 WebElement documentElement = frame->document().documentElement(); local
317 if (documentElement.isNull())
319 return documentElement.innerText().utf8();
327 if (frame->parent() && !frame->document().documentElement().isNull()) {
/external/webkit/Source/WebCore/rendering/
H A DRenderView.cpp223 Node* documentElement = document()->documentElement(); local
224 if (RenderObject* rootRenderer = documentElement ? documentElement->renderer() : 0) {
749 Node* node = document()->documentElement();
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp190 Element* documentElement = coreFrame->document()->documentElement(); local
191 return documentElement->innerText().utf8();
562 Element* scope = selectionRoot ? selectionRoot : frame->document()->documentElement();
585 Element* scope = selectionRoot ? selectionRoot : frame->document()->documentElement();
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp608 HRESULT STDMETHODCALLTYPE DOMDocument::documentElement( function in class:DOMDocument
611 *result = DOMElement::createInstance(m_document->documentElement());
H A DDOMHTMLClasses.h311 virtual HRESULT STDMETHODCALLTYPE documentElement( function in class:DOMHTMLDocument
312 /* [retval][out] */ IDOMElement **result) { return DOMDocument::documentElement(result); }
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h80 @property(readonly, retain) DOMElement *documentElement; variable
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp509 For access to the underlying DOM tree, there is documentElement(),
673 Element *documentElement = d->frame->document()->documentElement(); local
674 if (documentElement)
675 return documentElement->innerText();
1364 QWebElement QWebFrame::documentElement() const function in class:QWebFrame
1369 return QWebElement(doc->documentElement());
1384 return documentElement().findAll(selectorQuery);
1400 return documentElement().findFirst(selectorQuery);
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp441 Element* docElement = doc ? doc->documentElement() : 0;
550 Node* documentElement = document->documentElement(); local
551 RenderObject* rootRenderer = documentElement ? documentElement->renderer() : 0;
560 RenderObject* o = rootRenderer->style()->overflowX() == OVISIBLE && document->documentElement()->hasTagName(htmlTag) ? body->renderer() : rootRenderer;
565 if (!documentElement->isSVGElement())
874 Node* documentElement = document->documentElement(); local
875 RenderObject* rootRenderer = documentElement
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp1385 Element* documentElement = document->documentElement(); local
1386 if (documentElement) {
1387 const AtomicString& ariaLabel = documentElement->getAttribute(aria_labelAttr);
3606 domNode = m_renderer->document()->documentElement();

Completed in 387 milliseconds