Annotation of embedaddon/php/ext/dom/tests/DOMComment_insertData_basic.phpt, revision 1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>