tidy-html5/regression_testing/cases/xml-cases/case-1365706@0.xml
Jim Derry 5a1b65d089 Move the testing repository back into the Tidy codebase.
Automate testing of any PR's.
Updated README's explaining new processes.
2021-05-21 10:43:35 -04:00

25 lines
673 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary
SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary title="Demo XML space issues">
<suite name="Test Suite" description="Keeping spaces with
break tags">
<doc name="a lost space">
<html>
There is no <b>space</b> after <code>tagged</code>
words.</html>
</doc>
<doc name="b using xml:space preserve">
<html xml:space="preserve">
There is <b>space</b> after <code>tagged</code>
words.</html>
</doc>
<doc name="c using pre">
<html>
<pre>
There is <b>space</b> after <code>tagged</code> words.</pre>
</html>
</doc>
</suite>
</dictionary>