Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / colgroup-preceded-by-caption.html
blobbc2414b18ab8be327eb1dbd41e1ab1b5156a7fa3
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5 <title>&lt;COL&gt; after &lt;CAPTION&gt;</title>
6 </head>
7 <body>
8 <table>
9 <caption>The next line should have yellow background.</caption>
10 <col style="background: yellow;">
11 <tr>
12 <td>
13 This line should have yellow background.
14 </td>
15 </tr>
16 </table>
17 <table>
18 <caption>The next line should have yellow background.</caption>
19 <colgroup>
20 <col style="background: yellow;">
21 </colgroup>
22 <tr>
23 <td>
24 This line should have yellow background.
25 </td>
26 </tr>
27 </table>
28 </body>
29 </html>