haikuwebkit/LayoutTests/fast/table/colgroup-preceded-by-captio...

29 lines
676 B
HTML

<!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>