From: stockiNail Date: Sun, 26 Feb 2023 12:19:44 +0000 (+0100) Subject: Disable canvas acceleration in Firefox 110 in test cases (#11165) X-Git-Tag: v4.3.0~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2f8ab1cba97a9463496563d5b3bea1e70d214be4;p=thirdparty%2FChart.js.git Disable canvas acceleration in Firefox 110 in test cases (#11165) --- diff --git a/karma.conf.cjs b/karma.conf.cjs index 5d53297fb..61122bd97 100644 --- a/karma.conf.cjs +++ b/karma.conf.cjs @@ -73,6 +73,7 @@ module.exports = async function(karma) { // Explicitly disable hardware acceleration to make image // diff more stable when ran on Travis and dev machine. // https://github.com/chartjs/Chart.js/pull/5629 + // Since FF 110 https://github.com/chartjs/Chart.js/issues/11164 customLaunchers: { chrome: { base: 'Chrome', @@ -86,7 +87,8 @@ module.exports = async function(karma) { firefox: { base: 'Firefox', prefs: { - 'layers.acceleration.disabled': true + 'layers.acceleration.disabled': true, + 'gfx.canvas.accelerated': false } }, safari: {