devicePixelRatio test

by balefrost

HTML

devicePixelRatio: <span id="devicePixelRatio"></span>

JavaScript

var devicePixelRatioEl = document.getElementById("devicePixelRatio");

function resize() {
    devicePixelRatioEl.innerText = window.devicePixelRatio;
}

resize();
window.addEventListener("resize", resize);