blob: 8391f64fd1b139aa5f24cb5aa3d743fecab6e366 (
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 1792643</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 style="filter: hue-rotate(0);">
<th>foo</th>
</tr>
<tr style="will-change: transform;">
<th>bar</th>
</tr>
</table>
</div>
</body>
</html>
|