• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/dom/

Lines Matching defs:node

35 void ChildNodeInsertionNotifier::notifyDescendantInsertedIntoDocument(ContainerNode* node)
37 ChildNodesLazySnapshot snapshot(node);
42 if (node->inDocument() && child->parentNode() == node)
46 if (!node->isElementNode())
49 if (ElementShadow* shadow = toElement(node)->shadow()) {
51 if (node->inDocument() && root->host() == node)
57 void ChildNodeInsertionNotifier::notifyDescendantInsertedIntoTree(ContainerNode* node)
59 for (Node* child = node->firstChild(); child; child = child->nextSibling()) {
64 if (ShadowRoot* root = node->shadowRoot())
68 void ChildNodeRemovalNotifier::notifyDescendantRemovedFromDocument(ContainerNode* node)
70 ChildNodesLazySnapshot snapshot(node);
75 if (!node->inDocument() && child->parentNode() == node)
79 if (!node->isElementNode())
82 if (node->document()->cssTarget() == node)
83 node->document()->setCSSTarget(0);
85 if (ElementShadow* shadow = toElement(node)->shadow()) {
87 if (!node->inDocument() && root->host() == node)
93 void ChildNodeRemovalNotifier::notifyDescendantRemovedFromTree(ContainerNode* node)
95 for (Node* child = node->firstChild(); child; child = child->nextSibling()) {
100 if (!node->isElementNode())
103 if (ElementShadow* shadow = toElement(node)->shadow()) {
116 unsigned assertConnectedSubrameCountIsConsistent(Node* node)
120 if (node->isElementNode()) {
121 if (node->isFrameOwnerElement() && toFrameOwnerElement(node)->contentFrame())
124 if (ElementShadow* shadow = toElement(node)->shadow()) {
130 for (Node* child = node->firstChild(); child; child = child->nextSibling())
135 ASSERT(node->connectedSubframeCount() >= count);
140 ASSERT(node->connectedSubframeCount() == count);