function run() {
function zoom(factor) { var previous = SpecialPowers.getFullZoom(window);
SpecialPowers.setFullZoom(window, factor);
return previous;
}
function isVisible(divName) {
return window.getComputedStyle(document.getElementById(divName)).visibility == "visible";
}
var screenPixelsPerCSSPixel = window.devicePixelRatio; var baseRatio = 1.0 * screenPixelsPerCSSPixel; var doubleRatio = 2.0 * screenPixelsPerCSSPixel; var halfRatio = 0.5 * screenPixelsPerCSSPixel; var styleElem = document.getElementsByTagName("style")[1];
styleElem.textContent =
["@media all and (-moz-device-pixel-ratio: " + baseRatio + ") {", "#zoom1 { visibility: visible; }", "}", "@media all and (-moz-device-pixel-ratio: " + doubleRatio + ") {", "#zoom2 { visibility: visible; }", "}", "@media all and (-moz-device-pixel-ratio: " + halfRatio + ") {", "#zoom3 { visibility: visible; }", "}"
].join("\n");
ok(isVisible("zoom1"), "Base ratio rule should apply at base zoom level");
ok(!isVisible("zoom2") && !isVisible("zoom3"), "no other rules should apply"); var origZoom = zoom(2);
ok(isVisible("zoom2"), "Double ratio rule should apply at double zoom level");
ok(!isVisible("zoom1") && !isVisible("zoom3"), "no other rules should apply");
zoom(0.5);
ok(isVisible("zoom3"), "Half ratio rule should apply at half zoom level");
ok(!isVisible("zoom1") && !isVisible("zoom2"), "no other rules should apply");
zoom(origZoom);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.