зеркало из https://github.com/mozilla/gecko-dev.git
Bug 450243: properly clamp zoomLevel to avoid zooming bugs, r=mfinkle
This commit is contained in:
Родитель
ff244820e1
Коммит
5fc144c6d5
|
@ -512,8 +512,8 @@
|
|||
|
||||
// scale to the element's width
|
||||
var elRect = this._getPagePosition(aElement);
|
||||
this._zoomLevel = Math.max((this.browser.boxObject.width) / (elRect.width + (2 * margin)),
|
||||
2);
|
||||
var zoomLevel = this.browser.boxObject.width / (elRect.width + (2 * margin));
|
||||
this._zoomLevel = Math.min(zoomLevel, 10);
|
||||
|
||||
// pan to the element
|
||||
this._panTo(Math.max(elRect.x - margin, 0),
|
||||
|
|
Загрузка…
Ссылка в новой задаче