Bug 104332 - Calculate active DPI value using getComputedStyle.

r=samuel@sieb.net
This commit is contained in:
silver%warwickcompsoc.co.uk 2004-02-19 17:11:14 +00:00
Родитель 51c9e399dd
Коммит b7717a50b9
1 изменённых файлов: 4 добавлений и 7 удалений

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

@ -830,13 +830,10 @@ function getDefaultFontSize()
}
catch(ex) { }
// DPI pref : browser.display.screen_resolution
var dpi = 96;
try
{
dpi = prefBranch.getIntPref("browser.display.screen_resolution");
}
catch(ex) { }
// Get the DPI the fun way (make Mozilla do the work).
var b = document.createElement("box");
b.style.width = "1in";
var dpi = window.getComputedStyle(b, null).width.match(/^\d+/);
return Math.round((pxSize / dpi) * 72);
}