summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1735265-1-ref.html
blob: 9a7b488c331c592d4030428860a2a7c619cd962f (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
<html>

<head>
  <meta charset="utf-8">
  <title>Test for bug 1735265</title>
  <style>
    table {
      width: 500px;
    }

    th {
      background-color: green;
    }

    div {
      width: 300px;
      overflow: hidden;
    }
  </style>
</head>

<body>
  <div>
    <table>
      <colgroup></colgroup>
      <tr>
        <th style="filter: hue-rotate(0);">foo</th>
      </tr>
      <tr>
        <th style="will-change: transform;">bar</th>
      </tr>
    </table>
  </div>
</body>

</html>