зеркало из https://github.com/mozilla/gecko-dev.git
Bug 748495 - Don't call setCSSViewport unnecessarily. r=Cwiiis
This commit is contained in:
Родитель
d3d0513618
Коммит
040ed30c64
|
@ -3567,7 +3567,12 @@ Tab.prototype = {
|
|||
},
|
||||
|
||||
setBrowserSize: function(aWidth, aHeight) {
|
||||
if (Math.abs(this.browserWidth - aWidth) < 1e-6 && Math.abs(this.browserHeight - aHeight) < 1e-6) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.browserWidth = aWidth;
|
||||
this.browserHeight = aHeight;
|
||||
|
||||
if (!this.browser.contentWindow)
|
||||
return;
|
||||
|
|
Загрузка…
Ссылка в новой задаче