Disable canvas acceleration for linux tests

This commit is contained in:
Calixte Denizet 2022-07-15 13:31:37 +02:00
parent 41b2f52f70
commit ad62ae561c

View File

@ -962,6 +962,8 @@ async function startBrowser(browserName, startUrl = "") {
"print.printer_PDF.print_to_filename": printFile, "print.printer_PDF.print_to_filename": printFile,
// Enable OffscreenCanvas // Enable OffscreenCanvas
"gfx.offscreencanvas.enabled": true, "gfx.offscreencanvas.enabled": true,
// Disable gpu acceleration
"gfx.canvas.accelerated": false,
}; };
} }