1ca8e210c8
Naked groups of LI in HTML5 mode will now have an inferred UL applied to them consistent with HTML4 and earlier modes. Test case added. Note that three regressions were updated in favor of this corrected behavior.
26 lines
660 B
HTML
Executable file
26 lines
660 B
HTML
Executable file
<!--
|
||
This test case represents HTML Tidy issue #525, which claims
|
||
that in HTML5 mode, LI tags are not enclosed in UL autiomatically.
|
||
-->
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title>Issue 525 – Infer UL around LI</title>
|
||
</head>
|
||
<body>
|
||
<br>
|
||
<li>Bachelor of Arts</li>
|
||
<li>Bachelor of Biomedical Science</li>
|
||
<li>Bachelor of Commerce</li>
|
||
<li>Bachelor of Commerce Specialist</li>
|
||
<li>Bachelor of Computer Science</li>
|
||
<li>Bachelor of Education (Honours)</li>
|
||
<li>Bachelor of Engineering (Honours)</li>
|
||
<li>Bachelor of Global Studies</li>
|
||
<li>Bachelor of Information Technology</li>
|
||
<li>Bachelor of Laws (Honours)</li>
|
||
<li>Bachelor of Music.</li>
|
||
<br>
|
||
</body>
|
||
</html>
|