30 lines
623 B
HTML
30 lines
623 B
HTML
<!--
|
|
This test case represents HTML Tidy issue #464, which describes
|
|
a descrepancy between tidy's behavior and the W3C Nu HTML
|
|
checker behavior. In this case, <dl> is now allowed to contain
|
|
a div as a descendent in HTML5.
|
|
-->
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Issue #464</title>
|
|
</head>
|
|
<body>
|
|
<dl>
|
|
<dt>term</dt>
|
|
<dd>def</dd>
|
|
<dt>another term<dt>
|
|
<dd>another def</dd>
|
|
</dl>
|
|
<dl>
|
|
<div>
|
|
<dt>term</dt>
|
|
<dd>def</dd>
|
|
<dt>another term<dt>
|
|
<dd>another def</dd>
|
|
</div>
|
|
</dl>
|
|
</body>
|
|
</html>
|