summaryrefslogtreecommitdiffstats
path: root/layout/reftests/outline/outline-table-caption.html
blob: 55e6a6e9d53241d35b924fc0efd1e477cc1ed9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<style>
table { outline: 1px solid blue; border-collapse: collapse; }
.caption, .cell { width: 100px; height: 100px; padding: 0; text-align: left; vertical-align: top; }
.caption { background-color: yellow; }
.cell { background-color: lime; }
</style>
<table>
  <caption class="caption">Caption</caption>
  <tr><td class="cell">Cell</td></tr>
</table>