php-src/ext/tidy/tests/024.phpt
Michael Orlitzky 6319a35849 ext/tidy: work around a legacy libtidy bug in a test.
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.
2016-07-11 14:05:43 +02:00

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>