internalCloneWithOwnerDocument method
Implementation
@visibleForTesting
@override
Node internalCloneWithOwnerDocument(Document ownerDocument, bool? deep) {
final clone = DocumentFragment();
if (deep != false) {
Node._cloneChildrenFrom(ownerDocument, newParent: clone, oldParent: this);
}
return clone;
}