mirror of
https://github.com/chartjs/Chart.js
synced 2025-04-29 15:47:20 +08:00
Disable canvas acceleration in Firefox 110 in test cases (#11165)
This commit is contained in:
parent
287394e5e3
commit
2f8ab1cba9
@ -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: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user