Bug 628660 - Gray area when navigating with the form assistant [r=mfinkle,stechz]

This commit is contained in:
Vivien Nicolas 2011-01-27 21:32:35 +01:00
parent f809fe4925
commit 111787aaee

View File

@ -1041,7 +1041,12 @@ var Browser = {
view.setScale(scale);
view._contentView.scrollTo(scrollX, scrollY);
browser.scale = scale;
// If the scale level doesn't change ensure the view is well refreshed
// otherwise setting the scale level of the browser will do it
if (scale == browser.scale)
view._updateCacheViewport();
else
browser.scale = scale;
},
zoomToPoint: function zoomToPoint(cX, cY, aRect) {