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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DElementResolveContext.cpp35 , m_rootElementStyle(document.documentElement() ? document.documentElement()->renderStyle() : document.renderStyle())
51 Node* documentElement = document.documentElement(); local
53 m_rootElementStyle = documentElement && element != documentElement ? documentElement->renderStyle() : documentStyle;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleMedia.cpp58 Element* documentElement = document->documentElement(); local
59 if (!documentElement)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dexterns.js6 Document.prototype.documentElement.innerWidth;
7 Document.prototype.documentElement.head;
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DViewPainter.cpp61 Node* documentElement = m_renderView.document().documentElement(); local
62 if (RenderBox* rootBox = documentElement ? toRenderBox(documentElement->renderer()) : 0)
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLErrors.cpp125 RefPtrWillBeRawPtr<Element> documentElement = m_document->documentElement(); local
126 if (!documentElement) {
131 documentElement = body.get();
132 } else if (documentElement->namespaceURI() == SVGNames::svgNamespaceURI) {
143 m_document->parserRemoveChild(*documentElement);
145 body->parserAppendChild(documentElement);
148 documentElement = body.get();
163 Node* firstChild = documentElement->firstChild();
165 documentElement
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMImplementation.cpp218 RefPtrWillBeRawPtr<Node> documentElement = nullptr; local
220 documentElement = doc->createElementNS(namespaceURI, qualifiedName, exceptionState);
227 if (documentElement)
228 doc->appendChild(documentElement.release());
H A DDocument.h287 Element* documentElement() const function in class:blink::Document
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPageSerializerImpl.cpp509 Element* documentElement = document->documentElement(); local
510 if (documentElement)
511 buildContentForNode(documentElement, &param);
H A DWebDocument.cpp138 WebElement WebDocument::documentElement() const function in class:blink::WebDocument
140 return WebElement(constUnwrap<Document>()->documentElement());
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.cpp1037 Node* documentElement = document->documentElement(); local
1038 Node* node = documentElement;
1043 for (node = nextNodeWithShadowDOMInMind(*node, documentElement, includeUserAgentShadowDOM); node; node = nextNodeWithShadowDOMInMind(*node, documentElement, includeUserAgentShadowDOM)) {

Completed in 233 milliseconds