summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/contain-size-break-003.html
blob: 08555cf878749f42d7561caa33d58e305b89ce49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-paged">
<head>
<meta charset="utf-8">
  <title>CSS Test: 'contain: size' should not affect breaking in tables or table elements.</title>
  <style>
    .contain {
      contain:size;
    }
  </style>
</head>
  <body>
    <table class="contain">
      <tr>
        <td style="height:4in; width: 50px; background:orange;">
        </td>
      </tr>
    </table>
  </body>
</html>