Bug 886624 - Defect - Tests fail on HiDPI systems. r=jimm

This commit is contained in:
Jonathan Wilde 2013-06-25 12:06:27 -07:00
Родитель 95117da528
Коммит 8f3283d59c
3 изменённых файлов: 15 добавлений и 0 удалений

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

@ -252,6 +252,9 @@ function test() {
return;
}
// XXX need this until bugs 886624 and 859742 are fully resolved
setDevPixelEqualToPx();
requestLongerTimeout(3);
runTests();
}

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

@ -198,6 +198,9 @@ function test() {
return;
}
// XXX need this until bugs 886624 and 859742 are fully resolved
setDevPixelEqualToPx();
requestLongerTimeout(3);
runTests();
}

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

@ -27,6 +27,15 @@ function isLandscapeMode()
return (MetroUtils.snappedState == Ci.nsIWinMetroUtils.fullScreenLandscape);
}
function setDevPixelEqualToPx()
{
todo(false, "test depends on devPixelsPerPx set to 1.0 - see bugs 886624 and 859742");
SpecialPowers.setCharPref("layout.css.devPixelsPerPx", "1.0");
registerCleanupFunction(function () {
SpecialPowers.clearUserPref("layout.css.devPixelsPerPx");
});
}
function checkContextUIMenuItemCount(aCount)
{
let visibleCount = 0;