1--TEST--
2Test adding data to a DOMComment
3--CREDITS--
4Andrew Larssen <al@larssen.org>
5London TestFest 2008
6--SKIPIF--
7<?php require_once('skipif.inc'); ?>
8--FILE--
9<?php
10
11$dom = new DomDocument();
12$comment = $dom->createComment('test-comment');
13$comment->appendData('-more-data');
14$dom->appendChild($comment);
15$dom->saveXML();
16echo $dom->saveXML();
17
18?>
19--EXPECTF--
20<?xml version="1.0"?>
21<!--test-comment-more-data-->