Bug 1884571 - [devtools] Catch and log the waterfall background error to the browser console r=devtools-reviewers,nchevobbe

Differential Revision: https://phabricator.services.mozilla.com/D204865
This commit is contained in:
Hubert Boma Manilla 2024-03-18 09:18:30 +00:00
parent 0e321f79be
commit 991d7c1b6f

View File

@ -133,7 +133,11 @@ class WaterfallBackground {
// Flush the image data and cache the waterfall background.
pixelArray.set(view8bit);
this.ctx.putImageData(imageData, 0, 0);
try {
this.ctx.putImageData(imageData, 0, 0);
} catch (e) {
console.error("WaterfallBackground crash error", e);
}
this.setImageElement("waterfall-background", this.canvas);
}