summaryrefslogtreecommitdiffstats
path: root/layout/reftests/abs-pos/table-row-group-1.html
blob: 9f5072d7629e3221e41c3ab7f428be396f6739b4 (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
35
36
37
38
<!DOCTYPE html>
<html>
  <head>
    <style>
      #rel {
        position: relative;
        margin: 0;
        padding: 0;
      }
      .abs {
        position: absolute;
        margin: 0;
        padding: 0;
        top: 25px;
        left: 25px;
        width: 50px;
        height: 50px;
        background-color: green;
      }
      #bad {
        background-color: blue;
      }
    </style>
  </head>
  <body>
    The green square should not completely cover the blue square.
    <div class="abs" id="bad"></div>
    <table>
      <tbody id="rel">
        <tr>
          <td>
            <div class="abs"></div>
          </td>
        </tr>
      </tbody>
    </table>
  </body>
</html>