xref: /php-src/ext/tidy/tests/009.phpt (revision 7f2f0c00)
1--TEST--
2tidy_doc object overloading
3--EXTENSIONS--
4tidy
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>
20