summaryrefslogtreecommitdiff
path: root/ext/tidy/tests/017.phpt
blob: 893e902f19a77c15c3a0bbf631f3206d0a3858d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
The Tidy Output Buffer Filter
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--POST--
--GET--
--INI--
--FILE--
<?php ob_start("ob_tidyhandler"); ?>
<B>testing</I>
--EXPECT--
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<b>testing</b>
</body>
</html>