Bug 836269 In the Form Submit Observer, use fullZoom from nsIDOMWindowUtils rather than inferring zoom from CSS to device pixel ratio r=Neil.

This commit is contained in:
Philip Chee 2013-01-31 21:48:06 +08:00
Родитель 4bce66c1ae
Коммит f9ae69c62c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -177,7 +177,7 @@ const gFormSubmitObserver = {
var style = win.getComputedStyle(element, null);
var scale = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils)
.screenPixelsPerCSSPixel;
.fullZoom;
var offset = style.direction == 'rtl' ? parseInt(style.paddingRight) +
parseInt(style.borderRightWidth) :