| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| <html> |
| <head> |
| <title><COL> after <CAPTION></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> |