xref: /php-src/ext/tidy/tests/016.phpt (revision 7f2f0c00)
1--TEST--
2Passing configuration file through tidy_parse_file() (may fail with buggy libtidy)
3--EXTENSIONS--
4tidy
5--FILE--
6<?php
7        $tidy = tidy_parse_file(__DIR__."/016.html",
8                                __DIR__."/016.tcfg");
9        $cfg = $tidy->getConfig();
10        echo $cfg["clean"];
11?>
12--EXPECT--
131
14