Annotation of embedaddon/php/ext/dom/tests/DOMDocumentFragment_appendXML_basic_001.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: DOMDocumentFragment::appendXML() with children with properties.
! 3: --CREDITS--
! 4: Eric Lee Stewart <ericleestewart@gmail.com>
! 5: # TestFest Atlanta 2009-05-24
! 6: --SKIPIF--
! 7: <?php require_once('skipif.inc'); ?>
! 8: --FILE--
! 9: <?php
! 10: $document = new DOMDocument;
! 11: $root = $document->createElement('root');
! 12: $document->appendChild($root);
! 13:
! 14: $fragment = $document->createDocumentFragment();
! 15: $fragment->appendXML('<foo id="baz">bar</foo>');
! 16: $root->appendChild($fragment);
! 17:
! 18: print $document->saveXML();
! 19: ?>
! 20: --EXPECT--
! 21: <?xml version="1.0"?>
! 22: <root><foo id="baz">bar</foo></root>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>