File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ module.exports = function(karma) {
4242 // Explicitly disable hardware acceleration to make image
4343 // diff more stable when ran on Travis and dev machine.
4444 // https://github.com/chartjs/Chart.js/pull/5629
45+ // Since FF 110, in FF GPU-accelerated Canvas2D is enabled by default on macOS and Linux.
46+ // This is braking fixture test cases, therefore is disabled by setting gfx.canvas.accelerated
4547 customLaunchers : {
4648 chrome : {
4749 base : 'Chrome' ,
@@ -55,7 +57,8 @@ module.exports = function(karma) {
5557 firefox : {
5658 base : 'Firefox' ,
5759 prefs : {
58- 'layers.acceleration.disabled' : true
60+ 'layers.acceleration.disabled' : true ,
61+ 'gfx.canvas.accelerated' : false
5962 }
6063 }
6164 } ,
You can’t perform that action at this time.
0 commit comments