1735265-1.html (550B)
1 <html> 2 3 <head> 4 <meta charset="utf-8"> 5 <title>Test for bug 1735265</title> 6 <style> 7 table { 8 width: 500px; 9 } 10 11 th { 12 background-color: green; 13 } 14 15 colgroup { 16 background-color: red; 17 } 18 19 div { 20 width: 300px; 21 overflow: hidden; 22 } 23 </style> 24 </head> 25 26 <body> 27 <div> 28 <table> 29 <colgroup></colgroup> 30 <tr> 31 <th style="filter: hue-rotate(0);">foo</th> 32 </tr> 33 <tr> 34 <th style="will-change: transform;">bar</th> 35 </tr> 36 </table> 37 </div> 38 </body> 39 40 </html>