I loaded XMLDocument with XMLHttpRequest.
<root xmlns="http://somesite.org/ns">
</root>
http://somesite.org/ns is the default namespace. I can use function Node.isDefaultNamespace for check if some namespace is default (true/false) and it's work well.
But how can I get default namespace from XMLDocument?
Is there somethink like DOMString Node.getDefaultNamespace()?