php-src/ext/tidy/tests/004.phpt

21 lines
494 B
Plaintext
Raw Normal View History

2003-08-01 00:22:43 +00:00
--TEST--
tidy_diagnose()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
2003-08-01 00:22:43 +00:00
--POST--
--GET--
--INI--
--FILE--
<?php
tidy_parse_string("<HTML></HTML>");
tidy_diagnose();
echo tidy_get_error_buffer();
2003-08-01 00:22:43 +00:00
?>
--EXPECT--
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 1 column 7 - Warning: discarding unexpected </html>
line 1 column 14 - Warning: inserting missing 'title' element
Info: Document content looks like HTML 3.2
3 warnings, 0 errors were found!