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

/external/webkit/Source/WebCore/dom/
H A DNode.cpp484 void Node::setTreeScope(TreeScope* newTreeScope) argument
487 ASSERT(newTreeScope);
488 ASSERT(!inDocument() || treeScope() == newTreeScope);
490 if (newTreeScope->isDocumentNode()) {
498 ensureRareData()->setTreeScope(newTreeScope);
501 setDocument(newTreeScope->document());
504 void Node::setTreeScopeRecursively(TreeScope* newTreeScope) argument
507 ASSERT(newTreeScope);
508 if (treeScope() == newTreeScope)
512 Document* newDocument = newTreeScope
[all...]

Completed in 50 milliseconds