mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
19 lines
346 B
HTML
19 lines
346 B
HTML
<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>
|