1--TEST--
2DOMDocumentFragment::appendXML() with children with properties.
3--CREDITS--
4Eric 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
18print $document->saveXML();
19?>
20--EXPECT--
21<?xml version="1.0"?>
22<root><foo id="baz">bar</foo></root>
23