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