Home
last modified time | relevance | path

Searched refs:isDocumentFragment (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentFragment.h52 …bool isDocumentFragment() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessa…
55 DEFINE_NODE_TYPE_CASTS(DocumentFragment, isDocumentFragment());
DContainerNode.cpp68 if (node.isDocumentFragment()) { in collectChildrenAndRemoveFromOldParent()
108 if (!child.isDocumentFragment()) in isChildTypeAllowed()
300 ASSERT(!newChild->isDocumentFragment()); in parserInsertBefore()
602 ASSERT(!oldChild.isDocumentFragment()); in parserRemoveChild()
749 ASSERT(!newChild->isDocumentFragment()); in parserAppendChild()
DNode.h271 bool isDocumentFragment() const { return getFlag(IsDocumentFragmentFlag); } in isDocumentFragment() function
272 bool isShadowRoot() const { return isDocumentFragment() && isTreeScope(); } in isShadowRoot()
DContainerNode.h334 return parent && (parent->isElementNode() || parent->isDocumentFragment()) ? parent : 0; in parentElementOrDocumentFragment()
DElement.h541 …bool isDocumentFragment() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessa…
DNode.cpp899 if (current->isDocumentFragment() && toDocumentFragment(current)->isTemplateContent()) in containsIncludingHostElements()
1165 if (isDocumentFragment() && toDocumentFragment(this)->isTemplateContent()) in parentOrShadowHostOrTemplateHostNode()
DDocument.h1064 …bool isDocumentFragment() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessa…
DRange.cpp1009 if (!m_start.offset() && (node->isDocumentNode() || node->isDocumentFragment())) in createContextualFragment()
DDocument.cpp3285 if (newChild.isDocumentFragment()) { in canReplaceChild()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.cpp571 if (!node || (!node->isElementNode() && !node->isDocumentNode() && !node->isDocumentFragment())) in pushChildNodesToFrontend()
1198 while (node && !node->isElementNode() && !node->isDocumentNode() && !node->isDocumentFragment()) in inspect()