Annotation of embedaddon/php/ext/tidy/tests/009.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: tidy_doc object overloading
        !             3: --SKIPIF--
        !             4: <?php if (!extension_loaded("tidy")) print "skip"; ?>
        !             5: --FILE--
        !             6: <?php 
        !             7:     
        !             8:     $a = tidy_parse_string("<HTML></HTML>");
        !             9:        echo $a;
        !            10:  
        !            11: ?>
        !            12: --EXPECT--
        !            13: <html>
        !            14: <head>
        !            15: <title></title>
        !            16: </head>
        !            17: <body>
        !            18: </body>
        !            19: </html>

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