27 lines
670 B
HTML
27 lines
670 B
HTML
|
<!--
|
|||
|
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>
|
|||
|
<ul>
|
|||
|
<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></ul>
|
|||
|
</body>
|
|||
|
</html>
|