blob: 9d4fe5046d2908d9308052a8d7fac93c2a414bba (
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
39
40
|
<html>
<head>
<meta charset="utf-8">
<title>Test for bug 1735265</title>
<style>
table {
width: 500px;
}
th {
background-color: green;
}
colgroup {
background-color: red;
}
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>
|