diff options
Diffstat (limited to 'ext/tidy/tests')
-rw-r--r-- | ext/tidy/tests/001.phpt | 13 | ||||
-rw-r--r-- | ext/tidy/tests/002.phpt | 21 | ||||
-rw-r--r-- | ext/tidy/tests/003.phpt | 24 | ||||
-rw-r--r-- | ext/tidy/tests/004.phpt | 20 | ||||
-rw-r--r-- | ext/tidy/tests/005.html | 1 | ||||
-rw-r--r-- | ext/tidy/tests/005.phpt | 21 | ||||
-rw-r--r-- | ext/tidy/tests/006.phpt | 19 | ||||
-rw-r--r-- | ext/tidy/tests/007.phpt | 21 | ||||
-rw-r--r-- | ext/tidy/tests/008.phpt | 20 | ||||
-rw-r--r-- | ext/tidy/tests/009.phpt | 22 | ||||
-rw-r--r-- | ext/tidy/tests/010.phpt | 248 | ||||
-rw-r--r-- | ext/tidy/tests/011.phpt | 25 | ||||
-rw-r--r-- | ext/tidy/tests/012.phpt | 350 | ||||
-rw-r--r-- | ext/tidy/tests/013.html | 1 | ||||
-rw-r--r-- | ext/tidy/tests/013.phpt | 16 | ||||
-rw-r--r-- | ext/tidy/tests/014.phpt | 17 | ||||
-rw-r--r-- | ext/tidy/tests/015.html | 1 | ||||
-rw-r--r-- | ext/tidy/tests/015.phpt | 16 | ||||
-rw-r--r-- | ext/tidy/tests/016.html | 1 | ||||
-rw-r--r-- | ext/tidy/tests/016.phpt | 27 | ||||
-rw-r--r-- | ext/tidy/tests/016.tcfg | 1 | ||||
-rw-r--r-- | ext/tidy/tests/017.phpt | 20 |
22 files changed, 0 insertions, 905 deletions
diff --git a/ext/tidy/tests/001.phpt b/ext/tidy/tests/001.phpt deleted file mode 100644 index 6a9f1b5c81..0000000000 --- a/ext/tidy/tests/001.phpt +++ /dev/null @@ -1,13 +0,0 @@ ---TEST-- -Check for tidy presence ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php -echo "tidy extension is available"; -?> ---EXPECT-- -tidy extension is available diff --git a/ext/tidy/tests/002.phpt b/ext/tidy/tests/002.phpt deleted file mode 100644 index c928a9baae..0000000000 --- a/ext/tidy/tests/002.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---TEST-- -tidy_parse_string() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_string("<HTML></HTML>"); - echo tidy_get_output($a); - -?> ---EXPECT-- -<html> -<head> -<title></title> -</head> -<body> -</body> -</html>
\ No newline at end of file diff --git a/ext/tidy/tests/003.phpt b/ext/tidy/tests/003.phpt deleted file mode 100644 index 028e543915..0000000000 --- a/ext/tidy/tests/003.phpt +++ /dev/null @@ -1,24 +0,0 @@ ---TEST-- -tidy_clean_repair() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - - $a = tidy_parse_string("<HTML></HTML>"); - tidy_clean_repair($a); - echo tidy_get_output($a); - -?> ---EXPECT-- -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> -<html> -<head> -<title></title> -</head> -<body> -</body> -</html> diff --git a/ext/tidy/tests/004.phpt b/ext/tidy/tests/004.phpt deleted file mode 100644 index fa2bb6a314..0000000000 --- a/ext/tidy/tests/004.phpt +++ /dev/null @@ -1,20 +0,0 @@ ---TEST-- -tidy_diagnose() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_string("<HTML></HTML>"); - tidy_diagnose($a); - echo tidy_get_error_buffer($a); -?> ---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!
\ No newline at end of file diff --git a/ext/tidy/tests/005.html b/ext/tidy/tests/005.html deleted file mode 100644 index 8c17451f91..0000000000 --- a/ext/tidy/tests/005.html +++ /dev/null @@ -1 +0,0 @@ -<HTML></HTML> diff --git a/ext/tidy/tests/005.phpt b/ext/tidy/tests/005.phpt deleted file mode 100644 index 267befa5b6..0000000000 --- a/ext/tidy/tests/005.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---TEST-- -tidy_parse_file() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_file("ext/tidy/tests/005.html"); - echo tidy_get_output($a); - -?> ---EXPECT-- -<html> -<head> -<title></title> -</head> -<body> -</body> -</html>
\ No newline at end of file diff --git a/ext/tidy/tests/006.phpt b/ext/tidy/tests/006.phpt deleted file mode 100644 index 1609243974..0000000000 --- a/ext/tidy/tests/006.phpt +++ /dev/null @@ -1,19 +0,0 @@ ---TEST-- -Verbose tidy_get_error_buffer() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_string("<HTML><asd asdf></HTML>"); - echo tidy_get_error_buffer($a); - -?> ---EXPECT-- -line 1 column 1 - Warning: missing <!DOCTYPE> declaration -line 1 column 7 - Error: <asd> is not recognized! -line 1 column 7 - Warning: discarding unexpected <asd> -line 1 column 17 - Warning: discarding unexpected </html> -line 1 column 7 - Warning: inserting missing 'title' element
\ No newline at end of file diff --git a/ext/tidy/tests/007.phpt b/ext/tidy/tests/007.phpt deleted file mode 100644 index 4b419b56b5..0000000000 --- a/ext/tidy/tests/007.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---TEST-- -Verbose tidy_setopt() / tidy_getopt() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---INI-- -tidy.default_config= ---FILE-- -<?php - $a = new tidy(); - echo "Current Value of 'tidy-mark': "; - var_dump($a->getopt("tidy-mark")); - echo "Current Value of 'error-file': "; - var_dump($a->getopt("error-file")); - echo "Current Value of 'tab-size': "; - var_dump($a->getopt("tab-size")); - -?> ---EXPECT-- -Current Value of 'tidy-mark': NULL -Current Value of 'error-file': string(0) "" -Current Value of 'tab-size': int(8) diff --git a/ext/tidy/tests/008.phpt b/ext/tidy/tests/008.phpt deleted file mode 100644 index 47c9474b2e..0000000000 --- a/ext/tidy/tests/008.phpt +++ /dev/null @@ -1,20 +0,0 @@ ---TEST-- -Accessing the error buffer via $obj->error_buf... ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - - $a = tidy_parse_string("<HTML><asd asdf></HTML>"); - echo $a->error_buf; - -?> ---EXPECT-- -line 1 column 1 - Warning: missing <!DOCTYPE> declaration -line 1 column 7 - Error: <asd> is not recognized! -line 1 column 7 - Warning: discarding unexpected <asd> -line 1 column 17 - Warning: discarding unexpected </html> -line 1 column 7 - Warning: inserting missing 'title' element
\ No newline at end of file diff --git a/ext/tidy/tests/009.phpt b/ext/tidy/tests/009.phpt deleted file mode 100644 index b024192091..0000000000 --- a/ext/tidy/tests/009.phpt +++ /dev/null @@ -1,22 +0,0 @@ ---TEST-- -tidy_doc object overloading ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - - $a = tidy_parse_string("<HTML></HTML>"); - echo $a; - -?> ---EXPECT-- -<html> -<head> -<title></title> -</head> -<body> -</body> -</html>
\ No newline at end of file diff --git a/ext/tidy/tests/010.phpt b/ext/tidy/tests/010.phpt deleted file mode 100644 index efeb1b59a9..0000000000 --- a/ext/tidy/tests/010.phpt +++ /dev/null @@ -1,248 +0,0 @@ ---TEST-- -Accessing root, body, html, and head nodes.. ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_string("<HTML><BODY BGCOLOR=#FFFFFF ALINK=#000000></BODY></HTML>"); - var_dump($a->root()); - var_dump($a->body()); - var_dump($a->html()); - var_dump($a->head()); - -?> ---EXPECT-- -object(tidy_node)#2 (5) { - ["value"]=> - string(94) "<html> -<head> -<title></title> -</head> -<body bgcolor="#FFFFFF" alink="#000000"> -</body> -</html>" - ["name"]=> - string(0) "" - ["type"]=> - int(0) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#3 (6) { - ["value"]=> - string(94) "<html> -<head> -<title></title> -</head> -<body bgcolor="#FFFFFF" alink="#000000"> -</body> -</html>" - ["name"]=> - string(4) "html" - ["type"]=> - int(5) - ["id"]=> - int(48) - ["attribute"]=> - NULL - ["child"]=> - array(2) { - [0]=> - &object(tidy_node)#4 (6) { - ["value"]=> - string(31) "<head> -<title></title> -</head> -" - ["name"]=> - string(4) "head" - ["type"]=> - int(5) - ["id"]=> - int(46) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#5 (6) { - ["value"]=> - string(16) "<title></title> -" - ["name"]=> - string(5) "title" - ["type"]=> - int(5) - ["id"]=> - int(111) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } - } - [1]=> - &object(tidy_node)#6 (6) { - ["value"]=> - string(49) "<body bgcolor="#FFFFFF" alink="#000000"> -</body> -" - ["name"]=> - string(4) "body" - ["type"]=> - int(5) - ["id"]=> - int(16) - ["attribute"]=> - array(2) { - ["bgcolor"]=> - string(7) "#FFFFFF" - ["alink"]=> - string(7) "#000000" - } - ["child"]=> - NULL - } - } - } - } -} -object(tidy_node)#2 (6) { - ["value"]=> - string(49) "<body bgcolor="#FFFFFF" alink="#000000"> -</body> -" - ["name"]=> - string(4) "body" - ["type"]=> - int(5) - ["id"]=> - int(16) - ["attribute"]=> - array(2) { - ["bgcolor"]=> - string(7) "#FFFFFF" - ["alink"]=> - string(7) "#000000" - } - ["child"]=> - NULL -} -object(tidy_node)#2 (6) { - ["value"]=> - string(94) "<html> -<head> -<title></title> -</head> -<body bgcolor="#FFFFFF" alink="#000000"> -</body> -</html>" - ["name"]=> - string(4) "html" - ["type"]=> - int(5) - ["id"]=> - int(48) - ["attribute"]=> - NULL - ["child"]=> - array(2) { - [0]=> - &object(tidy_node)#3 (6) { - ["value"]=> - string(31) "<head> -<title></title> -</head> -" - ["name"]=> - string(4) "head" - ["type"]=> - int(5) - ["id"]=> - int(46) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#6 (6) { - ["value"]=> - string(16) "<title></title> -" - ["name"]=> - string(5) "title" - ["type"]=> - int(5) - ["id"]=> - int(111) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } - } - [1]=> - &object(tidy_node)#4 (6) { - ["value"]=> - string(49) "<body bgcolor="#FFFFFF" alink="#000000"> -</body> -" - ["name"]=> - string(4) "body" - ["type"]=> - int(5) - ["id"]=> - int(16) - ["attribute"]=> - array(2) { - ["bgcolor"]=> - string(7) "#FFFFFF" - ["alink"]=> - string(7) "#000000" - } - ["child"]=> - NULL - } - } -} -object(tidy_node)#2 (6) { - ["value"]=> - string(31) "<head> -<title></title> -</head> -" - ["name"]=> - string(4) "head" - ["type"]=> - int(5) - ["id"]=> - int(46) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#4 (6) { - ["value"]=> - string(16) "<title></title> -" - ["name"]=> - string(5) "title" - ["type"]=> - int(5) - ["id"]=> - int(111) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } -} diff --git a/ext/tidy/tests/011.phpt b/ext/tidy/tests/011.phpt deleted file mode 100644 index 3596d02779..0000000000 --- a/ext/tidy/tests/011.phpt +++ /dev/null @@ -1,25 +0,0 @@ ---TEST-- -Accessing attributes of a node ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $a = tidy_parse_string("<HTML><BODY BGCOLOR=#FFFFFF ALINK=#000000></BODY></HTML>"); - $body = $a->body(); - var_dump($body->attribute); - foreach($body->attribute as $key=>$val) { - echo "Attrib '$key': $val\n"; - } -?> ---EXPECT-- -array(2) { - ["bgcolor"]=> - string(7) "#FFFFFF" - ["alink"]=> - string(7) "#000000" -} -Attrib 'bgcolor': #FFFFFF -Attrib 'alink': #000000
\ No newline at end of file diff --git a/ext/tidy/tests/012.phpt b/ext/tidy/tests/012.phpt deleted file mode 100644 index f500019bf9..0000000000 --- a/ext/tidy/tests/012.phpt +++ /dev/null @@ -1,350 +0,0 @@ ---TEST-- -Accessing children nodes ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - - function dump_nodes(tidy_node $node) { - - var_dump($node->has_children()); - if($node->has_children()) { - - foreach($node->child as $c) { - - var_dump($c); - - if($c->has_children()) { - - dump_nodes($c); - - } - } - - } - - } - - $a = tidy_parse_string("<HTML><BODY BGCOLOR=#FFFFFF ALINK=#000000><B>Hi</B><I>Bye<U>Test</U></I></BODY></HTML>"); - $html = $a->html(); - dump_nodes($html); - -?> ---EXPECT-- -bool(true) -object(tidy_node)#3 (6) { - ["value"]=> - string(31) "<head> -<title></title> -</head> -" - ["name"]=> - string(4) "head" - ["type"]=> - int(5) - ["id"]=> - int(46) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#4 (6) { - ["value"]=> - string(16) "<title></title> -" - ["name"]=> - string(5) "title" - ["type"]=> - int(5) - ["id"]=> - int(111) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } -} -bool(true) -object(tidy_node)#4 (6) { - ["value"]=> - string(16) "<title></title> -" - ["name"]=> - string(5) "title" - ["type"]=> - int(5) - ["id"]=> - int(111) - ["attribute"]=> - NULL - ["child"]=> - NULL -} -object(tidy_node)#5 (6) { - ["value"]=> - string(80) "<body bgcolor="#FFFFFF" alink="#000000"> -<b>Hi</b><i>Bye<u>Test</u></i> -</body> -" - ["name"]=> - string(4) "body" - ["type"]=> - int(5) - ["id"]=> - int(16) - ["attribute"]=> - array(2) { - ["bgcolor"]=> - string(7) "#FFFFFF" - ["alink"]=> - string(7) "#000000" - } - ["child"]=> - array(2) { - [0]=> - &object(tidy_node)#6 (6) { - ["value"]=> - string(9) "<b>Hi</b>" - ["name"]=> - string(1) "b" - ["type"]=> - int(5) - ["id"]=> - int(8) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#7 (5) { - ["value"]=> - string(2) "Hi" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } - } - [1]=> - &object(tidy_node)#8 (6) { - ["value"]=> - string(21) "<i>Bye<u>Test</u></i>" - ["name"]=> - string(1) "i" - ["type"]=> - int(5) - ["id"]=> - int(49) - ["attribute"]=> - NULL - ["child"]=> - array(2) { - [0]=> - &object(tidy_node)#9 (5) { - ["value"]=> - string(3) "Bye" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - [1]=> - &object(tidy_node)#10 (6) { - ["value"]=> - string(11) "<u>Test</u>" - ["name"]=> - string(1) "u" - ["type"]=> - int(5) - ["id"]=> - int(114) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#11 (5) { - ["value"]=> - string(4) "Test" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } - } - } - } - } -} -bool(true) -object(tidy_node)#6 (6) { - ["value"]=> - string(9) "<b>Hi</b>" - ["name"]=> - string(1) "b" - ["type"]=> - int(5) - ["id"]=> - int(8) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#7 (5) { - ["value"]=> - string(2) "Hi" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } -} -bool(true) -object(tidy_node)#7 (5) { - ["value"]=> - string(2) "Hi" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL -} -object(tidy_node)#8 (6) { - ["value"]=> - string(21) "<i>Bye<u>Test</u></i>" - ["name"]=> - string(1) "i" - ["type"]=> - int(5) - ["id"]=> - int(49) - ["attribute"]=> - NULL - ["child"]=> - array(2) { - [0]=> - &object(tidy_node)#9 (5) { - ["value"]=> - string(3) "Bye" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - [1]=> - &object(tidy_node)#10 (6) { - ["value"]=> - string(11) "<u>Test</u>" - ["name"]=> - string(1) "u" - ["type"]=> - int(5) - ["id"]=> - int(114) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#11 (5) { - ["value"]=> - string(4) "Test" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } - } - } -} -bool(true) -object(tidy_node)#9 (5) { - ["value"]=> - string(3) "Bye" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL -} -object(tidy_node)#10 (6) { - ["value"]=> - string(11) "<u>Test</u>" - ["name"]=> - string(1) "u" - ["type"]=> - int(5) - ["id"]=> - int(114) - ["attribute"]=> - NULL - ["child"]=> - array(1) { - [0]=> - &object(tidy_node)#11 (5) { - ["value"]=> - string(4) "Test" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL - } - } -} -bool(true) -object(tidy_node)#11 (5) { - ["value"]=> - string(4) "Test" - ["name"]=> - string(0) "" - ["type"]=> - int(4) - ["attribute"]=> - NULL - ["child"]=> - NULL -} diff --git a/ext/tidy/tests/013.html b/ext/tidy/tests/013.html deleted file mode 100644 index 7dc0357779..0000000000 --- a/ext/tidy/tests/013.html +++ /dev/null @@ -1 +0,0 @@ -<B>testing</I> diff --git a/ext/tidy/tests/013.phpt b/ext/tidy/tests/013.phpt deleted file mode 100644 index 5db0ce1cd8..0000000000 --- a/ext/tidy/tests/013.phpt +++ /dev/null @@ -1,16 +0,0 @@ ---TEST-- -Parsing a file using constructor ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $tidy = new tidy("ext/tidy/tests/013.html", array("show-body-only"=>true)); - $tidy->clean_repair(); - echo $tidy; - -?> ---EXPECT-- -<b>testing</b>
\ No newline at end of file diff --git a/ext/tidy/tests/014.phpt b/ext/tidy/tests/014.phpt deleted file mode 100644 index 2b94f93b13..0000000000 --- a/ext/tidy/tests/014.phpt +++ /dev/null @@ -1,17 +0,0 @@ ---TEST-- -Passing configuration options through tidy_parse_string(). ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $text = "<B>testing</I>"; - $tidy = tidy_parse_string($text, array('show-body-only'=>true)); - tidy_clean_repair($tidy); - echo tidy_get_output($tidy); - -?> ---EXPECT-- -<b>testing</b>
\ No newline at end of file diff --git a/ext/tidy/tests/015.html b/ext/tidy/tests/015.html deleted file mode 100644 index 7dc0357779..0000000000 --- a/ext/tidy/tests/015.html +++ /dev/null @@ -1 +0,0 @@ -<B>testing</I> diff --git a/ext/tidy/tests/015.phpt b/ext/tidy/tests/015.phpt deleted file mode 100644 index d553ca7aeb..0000000000 --- a/ext/tidy/tests/015.phpt +++ /dev/null @@ -1,16 +0,0 @@ ---TEST-- -Passing configuration options through tidy_parse_file(). ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $tidy = tidy_parse_file("ext/tidy/tests/015.html", array('show-body-only'=>true)); - tidy_clean_repair($tidy); - echo tidy_get_output($tidy); - -?> ---EXPECT-- -<b>testing</b>
\ No newline at end of file diff --git a/ext/tidy/tests/016.html b/ext/tidy/tests/016.html deleted file mode 100644 index 7dc6e4aba8..0000000000 --- a/ext/tidy/tests/016.html +++ /dev/null @@ -1 +0,0 @@ -<P><B><FONT SIZE=10 COLOR=#FF0000>testing</FONT></I></P> diff --git a/ext/tidy/tests/016.phpt b/ext/tidy/tests/016.phpt deleted file mode 100644 index 1b0fa1e38f..0000000000 --- a/ext/tidy/tests/016.phpt +++ /dev/null @@ -1,27 +0,0 @@ ---TEST-- -Passing configuration file through tidy_parse_file() ---SKIPIF-- -<?php if (!extension_loaded("tidy")) print "skip"; ?> ---POST-- ---GET-- ---INI-- ---FILE-- -<?php - $tidy = tidy_parse_file("ext/tidy/tests/016.html", "ext/tidy/tests/016.tcfg"); - tidy_clean_repair($tidy); - echo tidy_get_output($tidy); -?> ---EXPECT-- -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> -<html> -<head> -<title></title> - -<style type="text/css"> - p.c1 {font-weight: bold} -</style> -</head> -<body> -<p class="c1">testing</p> -</body> -</html> diff --git a/ext/tidy/tests/016.tcfg b/ext/tidy/tests/016.tcfg deleted file mode 100644 index fd6e4e44f4..0000000000 --- a/ext/tidy/tests/016.tcfg +++ /dev/null @@ -1 +0,0 @@ -clean: yes diff --git a/ext/tidy/tests/017.phpt b/ext/tidy/tests/017.phpt deleted file mode 100644 index 893e902f19..0000000000 --- a/ext/tidy/tests/017.phpt +++ /dev/null @@ -1,20 +0,0 @@ ---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>
\ No newline at end of file |