Skip to content

Commit 2f8ab1c

Browse files
authored
Disable canvas acceleration in Firefox 110 in test cases (#11165)
1 parent 287394e commit 2f8ab1c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

karma.conf.cjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ module.exports = async function(karma) {
7373
// Explicitly disable hardware acceleration to make image
7474
// diff more stable when ran on Travis and dev machine.
7575
// https://github.com/chartjs/Chart.js/pull/5629
76+
// Since FF 110 https://github.com/chartjs/Chart.js/issues/11164
7677
customLaunchers: {
7778
chrome: {
7879
base: 'Chrome',
@@ -86,7 +87,8 @@ module.exports = async function(karma) {
8687
firefox: {
8788
base: 'Firefox',
8889
prefs: {
89-
'layers.acceleration.disabled': true
90+
'layers.acceleration.disabled': true,
91+
'gfx.canvas.accelerated': false
9092
}
9193
},
9294
safari: {

0 commit comments

Comments
 (0)