You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following pages include an encoded '<' character in the onload eventHandler.
window.onload = function () {
if (!("devicePixelRatio" in window && window.devicePixelRatio > 1)) return;
var i, hiresElements = document.getElementsByClassName("hires");
for (i = 0; i < hiresElements.length; i++) {
var h = hiresElements[i];
if (h.tagName != "IMG") continue;
var src = h.getAttribute("src");
var src2x = src.replace(/\.\w+$/, function(m) { return "@2x" + m; });
h.src = src2x;
}
}
The following pages include an encoded '<' character in the onload eventHandler.
csswg-drafts/css-fonts-3/Overview.html
Line 6417 in 40eeef5
csswg-drafts/css-fonts-3/Fonts.html
Line 6423 in 40eeef5
The text was updated successfully, but these errors were encountered: