Searched refs:documentElement (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DOutlookQuirksUserScript.js28 if (document.documentElement.outerHTML != "<html><head></head><body></body></html>")
33 document.documentElement.removeChild(document.head);
34 document.documentElement.removeChild(document.body);
/macosx-10.10/WebCore-7600.1.25/css/
H A DStyleMedia.cpp60 Element* documentElement = document->documentElement(); local
61 if (!documentElement)
64 RefPtr<RenderStyle> rootStyle = document->ensureStyleResolver().styleForElement(documentElement, document->renderStyle(), DisallowStyleSharing, MatchOnlyUserAgentRules);
H A DStyleInvalidationAnalysis.cpp119 Element* documentElement = document.documentElement();
120 if (!documentElement)
124 filter.setupParentStack(documentElement);
125 invalidateStyleRecursively(*documentElement, filter, m_ruleSets);
H A DMediaQueryMatcher.cpp84 Element* documentElement = m_document->documentElement();
85 if (!documentElement)
88 RefPtr<RenderStyle> rootStyle = m_document->ensureStyleResolver().styleForElement(documentElement, m_document->renderStyle(), DisallowStyleSharing, MatchOnlyUserAgentRules);
H A DViewportStyleResolver.cpp119 return primitiveValue->getFloatValue() * m_document->documentElement()->renderStyle()->fontDescription().computedSize();
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLErrors.cpp121 RefPtr<Element> documentElement = m_document->documentElement(); local
122 if (!documentElement) {
127 documentElement = body.get();
129 else if (documentElement->namespaceURI() == SVGNames::svgNamespaceURI) {
140 m_document->parserRemoveChild(*documentElement);
142 body->parserAppendChild(documentElement);
145 documentElement = body.get();
162 Node* firstChild = documentElement->firstChild();
164 documentElement
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DFrameDOMTreeContentView.js74 this._restoreSelectedNodeAfterUpdate(this._domTree.frame.url, rootDOMNode.body || rootDOMNode.documentElement);
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/extensions/example/
H A Dexampletest.tcl42 set root [$doc documentElement]
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/extensions/tdomhtml/
H A Dtdomhtml.tcl200 [$doc documentElement] appendFromScript $script
213 [$doc documentElement] asHTML -channel $chan
262 _2tcl [$doc documentElement] $ochan
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDOMImplementation.cpp227 RefPtr<Node> documentElement; local
229 documentElement = doc->createElementNS(namespaceURI, qualifiedName, ec);
236 if (documentElement)
237 doc->appendChild(documentElement.release());
H A DDocument.cpp817 return documentElement() && documentElement()->hasTagName(htmlTag) && documentElement()->hasAttribute(manifestAttr);
2281 auto element = documentElement();
2293 if (!newBody || !documentElement() || !newBody->hasTagName(bodyTag)) {
2309 documentElement()->appendChild(newBody.release(), ec);
2311 documentElement()->replaceChild(newBody.release(), b, ec);
2316 if (auto element = documentElement())
2492 || (documentElement() && !documentElement()
[all...]
/macosx-10.10/WebCore-7600.1.25/editing/ios/
H A DDictationCommandIOS.cpp80 RefPtr<Range> resultRange = TextIterator::rangeFromLocationAndLength(document().documentElement(), startIndex, endIndex, true);
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGDocument.cpp44 Element* elem = documentElement();
/macosx-10.10/WebKit-7600.1.25/mac/DOM/
H A DWebDOMOperations.mm173 if (DOMNode* documentElement = [self documentElement])
174 [range selectNode:documentElement];
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebFrame.cpp338 RefPtr<Element> documentElement = document->documentElement();
339 if (!documentElement)
345 range->selectNode(documentElement.get(), ec);
428 if (!m_coreFrame->document()->documentElement())
431 return m_coreFrame->document()->documentElement()->innerText();
615 for (Node* node = document->documentElement(); node; node = NodeTraversal::next(node)) {
633 for (Node* node = document->documentElement(); node; node = NodeTraversal::next(node)) {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/gpx/
H A Dgpx.tcl80 set version [[$gpx(dom,$token) documentElement] getAttribute version 0.0]
111 set gpxNode [$::gpx::gpx(dom,$token) documentElement]
/macosx-10.10/WebCore-7600.1.25/page/
H A DFrameView.cpp520 Element* docElement = doc ? doc->documentElement() : 0;
640 auto documentElement = document->documentElement(); local
641 RenderElement* documentRenderer = documentElement ? documentElement->renderer() : nullptr;
646 documentOrBodyRenderer = documentRenderer->style().overflowX() == OVISIBLE && documentElement->hasTagName(htmlTag) ? body->renderer() : documentRenderer;
686 auto documentElement = document->documentElement(); local
687 RenderElement* rootRenderer = documentElement ? documentElement
2973 Element* documentElement = document->documentElement(); local
3811 Element* documentElement = frame().document()->documentElement(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/style/
H A DStyleResolveTree.cpp747 if (document.styleSheetCollection().usesRemUnits() && document.documentElement() == &current && localChange != NoChange && currentStyle && newStyle && currentStyle->fontSize() != newStyle->fontSize()) {
958 Element* documentElement = document.documentElement(); local
959 if (!documentElement)
961 if (change < Inherit && !documentElement->childNeedsStyleRecalc() && !documentElement->needsStyleRecalc())
964 resolveTree(*documentElement, document, renderTreePosition, change);
H A DStyleResolveForDocument.cpp71 Element* docElement = document.documentElement();
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DDOMNode.js89 if (this.ownerDocument && !this.ownerDocument.documentElement && this._nodeName === "HTML")
90 this.ownerDocument.documentElement = this;
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Dutils.tcl32 documentElement getSimpleElementValue
425 proc ::SOAP::Utils::documentElement {domNode} {
426 return [$domNode documentElement]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderView.cpp563 Element* documentElement = document().documentElement(); local
564 if (RenderElement* rootRenderer = documentElement ? documentElement->renderer() : 0) {
1109 RenderElement* rootObject = document().documentElement() ? document().documentElement()->renderer() : 0;
1200 Node* node = document().documentElement();
/macosx-10.10/WebCore-7600.1.25/editing/
H A DVisibleUnits.cpp982 Element* rootElement = node->hasEditableStyle(editableType) ? node->rootEditableElement(editableType) : node->document().documentElement();
1040 Element* rootElement = node->hasEditableStyle(editableType) ? node->rootEditableElement(editableType) : node->document().documentElement();
1342 if (!node || !node->document().documentElement())
1346 // The canonicalization of the position at (documentElement, 0) can turn the visible
1350 Position firstCandidate = nextCandidate(createLegacyEditingPosition(node->document().documentElement(), 0));
1355 return VisiblePosition(firstPositionInNode(node->document().documentElement()), DOWNSTREAM);
1366 if (!node || !node->document().documentElement())
1374 Position lastPosition = createLegacyEditingPosition(node->document().documentElement(), node->document().documentElement()->childNodeCount());
1380 return VisiblePosition(lastPositionInNode(node->document().documentElement()), DOWNSTREA
[all...]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DDOMPatchSupport.cpp108 std::unique_ptr<Digest> oldInfo = createDigest(m_document->documentElement(), nullptr);
109 std::unique_ptr<Digest> newInfo = createDigest(newDocument->documentElement(), &m_unusedNodesMap);
130 fragment->parseHTML(markup, node.parentElement() ? node.parentElement() : m_document->documentElement());
132 fragment->parseXML(markup, node.parentElement() ? node.parentElement() : m_document->documentElement());
/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/examples/
H A Ddomtree.tcl166 set docel [dom::document cget $root -documentElement]
266 if {[catch {dom::document cget $node -documentElement} docel]} {

Completed in 296 milliseconds

1234