--TEST-- Bug #47848 (importNode doesn't preserve attribute namespaces) --SKIPIF-- --FILE-- appendChild($aDOM->createElementNS('http://friend2friend.net/','f2f:a')); $fromdom = new DOMDocument(); $fromdom->loadXML(''); $attr= $fromdom->firstChild->attributes->item(0); $att = $aDOM->importNode($attr); $aDOM->documentElement->appendChild($aDOM->importNode($attr, true)); echo $aDOM->saveXML(); ?> --EXPECT--