Bug 822666 - Robustify zoom comparison warning against floating point rounding. r=Cwiiis

This commit is contained in:
Kartikaya Gupta 2013-03-02 07:51:42 -05:00
parent e818e914b5
commit e1c3302196

View File

@ -3081,8 +3081,8 @@ Tab.prototype = {
this._drawZoom = resolution; this._drawZoom = resolution;
cwu.setResolution(resolution, resolution); cwu.setResolution(resolution, resolution);
} }
} else if (resolution != zoom) { } else if (Math.abs(resolution - zoom) >= 1e-6) {
dump("Warning: setDisplayPort resolution did not match zoom for background tab!"); dump("Warning: setDisplayPort resolution did not match zoom for background tab! (" + resolution + " != " + zoom + ")");
} }
// Finally, we set the display port, taking care to convert everything into the CSS-pixel // Finally, we set the display port, taking care to convert everything into the CSS-pixel