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--EXPECT-- 9<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 10<html> 11<head> 12<title></title> 13</head> 14<body> 15<b>testing</b> 16</body> 17</html>