summaryrefslogtreecommitdiffstats
path: root/layout/reftests/abs-pos/table-caption-5.html
blob: c906089c67bce6454c220fcc43cd3095b2088a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html class="reftest-paged">
  <head>
    <style>
      @page { size:5in 3in; margin:0.5in; }
      #rel {
        position: relative;
        margin: 2px;
        padding: 0;
      }
      .abs {
        position: absolute;
        margin: 0;
        padding: 0;
        top: 25px;
        left: 25px;
        width: 50px;
        height: 50px;
        background-color: green;
      }
      #bad {
        background-color: blue;
      }
      .m { height:1.4in; }
      .b { border:1px solid; }
    </style>
  </head>
  <body>
    <div class="m"></div>
    <table>
      <caption id="rel"><div class="abs b"></div></caption>
    </table>
  </body>
</html>