tidy-html5/regression_testing/cases/github-cases/case-692@1.html
2021-06-30 09:25:37 -04:00

18 lines
674 B
HTML
Executable file

<!--
This test case represents HTML Tidy issue #692, which describes
how Tidy misbehaves when there are multiple <title> elements present.
The reason this change is needed is to alert the user that multiple
<title> elements are present, and to deleted all but the first title
element, which is consistent with the behavior of mainline web browers
as of this commit date.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HEAD>
<TITLE>Test stuff</TITLE>
<TITLE>As if one title isn't enough</TITLE>
</HEAD>
<BODY>
<P>This is my paragraph</P>
</BODY>
</HTML>