Lines Matching refs:appendChild
12 $fragment->appendChild($document->createTextNode("\n"));
13 $fragment->appendChild($document->createElementNS('http://example/ns', 'myns:childNode', '1'));
14 $fragment->appendChild($document->createTextNode("\n"));
15 $fragment->appendChild($document->createElementNS('http://example/ns', 'myns:childNode', '2'));
16 $fragment->appendChild($document->createTextNode("\n"));
44 …$fragment->childNodes[1]->appendChild($document->createElementNS('http://example/ns2', 'myns2:chil…
49 echo "== appendChild ==\n";
50 echo "-- fragment to document element --\n"; case1('appendChild'); echo "\n";
51 echo "-- children manually document element --\n"; case2('appendChild'); echo "\n";
52 echo "-- fragment to document where first element is not a text node --\n"; case3('appendChild'); e…
53 echo "-- fragment with namespace declarations in children --\n"; case4('appendChild'); echo "\n";
69 == appendChild ==