blob: bc2414b18ab8be327eb1dbd41e1ab1b5156a7fa3 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>&lt;COL&gt; after &lt;CAPTION&gt;</title>
</head>
<body>
<table>
<caption>The next line should have yellow background.</caption>
<col style="background: yellow;">
<tr>
<td>
This line should have yellow background.
</td>
</tr>
</table>
<table>
<caption>The next line should have yellow background.</caption>
<colgroup>
<col style="background: yellow;">
</colgroup>
<tr>
<td>
This line should have yellow background.
</td>
</tr>
</table>
</body>
</html>