Home | History | Annotate | Download | only in dom

Lines Matching defs:oldElement

739             Element* oldElement = static_cast<Element*>(importedNode);
740 RefPtr<Element> newElement = createElementNS(oldElement->namespaceURI(), oldElement->tagQName().toString(), ec);
745 NamedNodeMap* attrs = oldElement->attributes(true);
756 newElement->copyNonAttributeProperties(oldElement);
759 for (Node* oldChild = oldElement->firstChild(); oldChild; oldChild = oldChild->nextSibling()) {