insertCaptionsAndRows3-ref.html 346 B

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