diff options
author | Michael Orlitzky <michael@orlitzky.com> | 2016-06-09 23:09:33 -0400 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-11 14:05:43 +0200 |
commit | 0e3e132a8affa976ef86cce051ba94f8bb43e147 (patch) | |
tree | cf45be5f15049539857ff3bbb4b886e7cb1f113f /ext/tidy | |
parent | a552ac5bd589035b66c899b74511b29a3d1a4718 (diff) | |
download | php-git-0e3e132a8affa976ef86cce051ba94f8bb43e147.tar.gz |
ext/tidy: fix DOCTYPE definitions in expected test output.
The test suite for the tidy extension was written before HTML5 was
"standardized". The new tidy-html5 library will output an HTML5
DOCTYPE in the absence of any other information, so the expected test
outputs have been updated to accomodate the absense of an HTML version
(which is how you declare "HTML5").
Diffstat (limited to 'ext/tidy')
-rw-r--r-- | ext/tidy/tests/003.phpt | 4 | ||||
-rw-r--r-- | ext/tidy/tests/017.phpt | 4 | ||||
-rw-r--r-- | ext/tidy/tests/020.phpt | 5 | ||||
-rw-r--r-- | ext/tidy/tests/026.phpt | 4 |
4 files changed, 8 insertions, 9 deletions
diff --git a/ext/tidy/tests/003.phpt b/ext/tidy/tests/003.phpt index 7201d6a5a2..1a63d44dfd 100644 --- a/ext/tidy/tests/003.phpt +++ b/ext/tidy/tests/003.phpt @@ -10,8 +10,8 @@ tidy_clean_repair() echo tidy_get_output($a); ?> ---EXPECT-- -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> +--EXPECTF-- +<!DOCTYPE html%S> <html> <head> <title></title> diff --git a/ext/tidy/tests/017.phpt b/ext/tidy/tests/017.phpt index ba620a32ec..24597e1a4a 100644 --- a/ext/tidy/tests/017.phpt +++ b/ext/tidy/tests/017.phpt @@ -5,8 +5,8 @@ The Tidy Output Buffer Filter --FILE-- <?php ob_start("ob_tidyhandler"); ?> <B>testing</I> ---EXPECT-- -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> +--EXPECTF-- +<!DOCTYPE html%S> <html> <head> <title></title> diff --git a/ext/tidy/tests/020.phpt b/ext/tidy/tests/020.phpt index dbfda96375..8ff1efbb68 100644 --- a/ext/tidy/tests/020.phpt +++ b/ext/tidy/tests/020.phpt @@ -19,12 +19,11 @@ var_dump(strlen($tidy->errorBuffer) > 50); echo $tidy; ?> ---EXPECT-- +--EXPECTF-- bool(true) bool(true) <?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html%A> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> diff --git a/ext/tidy/tests/026.phpt b/ext/tidy/tests/026.phpt index 24a1e6f4a7..b46cd5464b 100644 --- a/ext/tidy/tests/026.phpt +++ b/ext/tidy/tests/026.phpt @@ -12,8 +12,8 @@ echo '<p>xpto</p>'; ?> </html> ---EXPECT-- -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> +--EXPECTF-- +<!DOCTYPE html%S> <html> <head> <title></title> |