xref: /php-src/ext/tidy/tests/002.phpt (revision 7f2f0c00)
1--TEST--
2tidy_parse_string()
3--EXTENSIONS--
4tidy
5--FILE--
6<?php
7        $a = tidy_parse_string("<HTML></HTML>");
8        echo tidy_get_output($a);
9
10?>
11--EXPECT--
12<html>
13<head>
14<title></title>
15</head>
16<body>
17</body>
18</html>
19