31 lines
456 B
HTML
31 lines
456 B
HTML
|
<!--
|
||
|
This test case tests the definition list element and parser.
|
||
|
-->
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>
|
||
|
case-003
|
||
|
</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<dl>
|
||
|
<dd>
|
||
|
<div>
|
||
|
<table summary="">
|
||
|
<tr>
|
||
|
<td>
|
||
|
What is up?
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</dd>
|
||
|
<dd></dd>
|
||
|
</dl>
|
||
|
<center>
|
||
|
Hello
|
||
|
</center>
|
||
|
</body>
|
||
|
</html>
|