summaryrefslogtreecommitdiff
path: root/ext/tidy/tests/017.phpt
blob: 24597e1a4ad2e9c85f67e6e5bb7ed2a10d0e7481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
The Tidy Output Buffer Filter
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--FILE--
<?php ob_start("ob_tidyhandler"); ?>
<B>testing</I>
--EXPECTF--
<!DOCTYPE html%S>
<html>
<head>
<title></title>
</head>
<body>
<b>testing</b>
</body>
</html>