--TEST-- Dom\HTMLDocument serialization of document fragment --EXTENSIONS-- dom --FILE-- createDocumentFragment(); $fragment->appendChild($dom->createElement("foo")); $bar = $fragment->appendChild($dom->createElement("bar")); $fragment->appendChild($dom->createElement("baz")); $bar->appendChild($dom->createElement("inner")); echo $dom->saveHtml($fragment); ?> --EXPECT--