1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 07:58:20 +02:00
Files
archived-php-src/ext/tidy/tests/003.phpt
T
2018-10-14 19:45:12 +02:00

22 lines
298 B
PHP

--TEST--
tidy_clean_repair()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--FILE--
<?php
$a = tidy_parse_string("<HTML></HTML>");
tidy_clean_repair($a);
echo tidy_get_output($a);
?>
--EXPECTF--
<!DOCTYPE html%S>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>