doc = new HTMLDocumentImpl(doctype, this);
doc.appendChild(doc.createElement(qualifiedName)); // Da igual usar createElementNS
}
else
{
doc = new OtherNSDocumentImpl(doctype, this);
doc.appendChild(doc.createElementNS(namespaceURI,qualifiedName));
}
return doc;
}