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

1.1     ! misho       1: --TEST--
        !             2: DOMImplementation::createDocument()
        !             3: --SKIPIF--
        !             4: <?php
        !             5: include('skipif.inc');
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: $x = new DOMImplementation();
        !            10: $doc = $x->createDocument(null, 'html');
        !            11: echo $doc->saveHTML();
        !            12: ?>
        !            13: --EXPECTF--
        !            14: <html></html>

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