Skip to content

Commit f6f178a

Browse files
author
Sébastiaan
authored
Disable canvas acceleration in Firefox 110 in test cases (chartjs/Chart.js#11165) (#737)
1 parent b6b8eee commit f6f178a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

karma.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ module.exports = function(karma) {
4040
// Explicitly disable hardware acceleration to make image
4141
// diff more stable when ran on Travis and dev machine.
4242
// https://github.com/chartjs/Chart.js/pull/5629
43+
// Since FF 110 https://github.com/chartjs/Chart.js/issues/11164
4344
customLaunchers: {
4445
chrome: {
4546
base: 'Chrome',
@@ -50,7 +51,8 @@ module.exports = function(karma) {
5051
firefox: {
5152
base: 'Firefox',
5253
prefs: {
53-
'layers.acceleration.disabled': true
54+
'layers.acceleration.disabled': true,
55+
'gfx.canvas.accelerated': false
5456
}
5557
}
5658
},

0 commit comments

Comments
 (0)