blob: 7d42b3e336bd2daf272bee07fa98f40caf8161d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<style>
caption { color: green }
</style>
</head>
<body>
<table id="table">
<caption>this is the caption</caption>
<tbody><tr><td>a new row 1</td></tr></tbody>
<caption>this is a caption that you shouldn't see</caption>
<tbody><tr><td>a new row 2</td></tr></tbody>
<tbody><tr><td>a row</td></tr></tbody>
</table>
</body>
</html>
|