summaryrefslogtreecommitdiffstats
path: root/layout/reftests/first-line/caption-insert-in-first-line-ref.html
blob: 010a81fe4ec854c954f1af2a1dc62f1bc2738d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<style>
  div { color: green; }
  #table { display: inline-table; }
  #caption { display: table-caption; }
  #tbody { display: table-row-group; }
</style>
<div>
  <span id="table">
    <span id="caption">This should</span>
    <span id="tbody">be green</span>
  </span>
</div>