public void testDetachNamespaceNode() {
Element root = new Element("pre:root", "http://www.example.org/");
Nodes result = root.query("namespace::pre");
Namespace namespace = (Namespace) result.get(0);
namespace.detach();
assertNull(namespace.getParent());
}