Bug 1539311 - Fix incorrect parameter in the Windows Taskbar Previews code. r=Standard8

Differential Revision: https://phabricator.services.mozilla.com/D25013

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Felipe Gomes 2019-03-27 10:26:53 +00:00
Родитель b31b723c34
Коммит d96900349d
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -148,7 +148,7 @@ function PreviewController(win, tab) {
this.tab.addEventListener("TabAttrModified", this);
XPCOMUtils.defineLazyGetter(this, "canvasPreview", function() {
let canvas = PageThumbs.createCanvas(this.win);
let canvas = PageThumbs.createCanvas(this.win.win);
canvas.mozOpaque = true;
return canvas;
});
@ -270,7 +270,7 @@ PreviewController.prototype = {
let winWidth = this.win.width;
let winHeight = this.win.height;
let composite = PageThumbs.createCanvas(this.win);
let composite = PageThumbs.createCanvas(this.win.win);
// Use transparency, Aero glass is drawn black without it.
composite.mozOpaque = false;

Просмотреть файл

@ -261,7 +261,7 @@ var PageThumbs = {
return;
}
// The content is a local page, grab a thumbnail sync.
PageThumbUtils.createSnapshotThumbnail(aBrowser.ownerGlobal,
PageThumbUtils.createSnapshotThumbnail(aBrowser.contentWindow,
aCanvas,
aArgs);