2016.8のリリースではwindow.devicePixelRatio || 1として修正されています。
原因はwindow.devicePixelRatioの値が取れないためのようです。
出力したHTMLファイル内に以下のような箇所があります。
var pRatio = window.devicePixelRatio,
これを以下のように書き換えます。
var pRatio = window.devicePixelRatio || Math.round(window.screen.deviceXDPI / window.screen.logicalXDPI),
以上になります。
参考:javascript – window.devicePixelRatio does not work in IE 10 Mobile? – Stack Overflow