mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00

Our existing test 024.phpt actually tests incorrect behavior. There is a self-closing tag present in the input, but the expected output has that same tag half-open (i.e. open but never closed). To support tidy-html5, which does the right thing, that test needed to be changed. The self-closing tag was replaced by an explicit pair of tags, and some extra whitespace fudging was done.
39 lines
757 B
PHP
39 lines
757 B
PHP
--TEST--
|
|
libtidy handling of 'new-blocklevel-tags'
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('tidy')) die('skip');
|
|
if (strtotime(tidy_get_release()) < strtotime('20 january 2007')) die ('skip old libtidy');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
// more info at http://sf.net/tracker/?func=detail&atid=390963&aid=1598422&group_id=27659
|
|
|
|
$contents = '
|
|
<wps:block>
|
|
<wps:var>
|
|
<wps:value></wps:value>
|
|
</wps:var>
|
|
</wps:block>';
|
|
|
|
$config = array(
|
|
'doctype' => 'omit',
|
|
'new-blocklevel-tags' => 'wps:block,wps:var,wps:value',
|
|
'newline' => 'LF'
|
|
);
|
|
|
|
$tidy = tidy_parse_string($contents, $config, 'utf8');
|
|
$tidy->cleanRepair();
|
|
echo $tidy;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<wps:block>%w<wps:var>%w<wps:value></wps:value>%w</wps:var>%w</wps:block>
|
|
</body>
|
|
</html>
|