Skip to content

Commit

Permalink
Merge pull request #3558 from ewilligers/typo-onload
Browse files Browse the repository at this point in the history
[css-fonts-3] Fix type on onload eventHandler
  • Loading branch information
svgeesus committed Jun 4, 2019
2 parents dcdbf5b + 03bfdb4 commit e6aa6e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion css-fonts-3/Fonts.html
Expand Up @@ -6349,7 +6349,7 @@ <h2 class=no-num id=property-index>Property index</h2>
window.onload = function () {
if (!("devicePixelRatio" in window && window.devicePixelRatio > 1)) return;
var i, hiresElements = document.getElementsByClassName("hires");
for (i = 0; i &lt; hiresElements.length; i++) {
for (i = 0; i < hiresElements.length; i++) {
var h = hiresElements[i];
if (h.tagName != "IMG") continue;
var src = h.getAttribute("src");
Expand Down
2 changes: 1 addition & 1 deletion css-fonts-3/Overview.html
Expand Up @@ -6349,7 +6349,7 @@ <h2 class=no-num id=property-index>Property index</h2>
window.onload = function () {
if (!("devicePixelRatio" in window && window.devicePixelRatio > 1)) return;
var i, hiresElements = document.getElementsByClassName("hires");
for (i = 0; i &lt; hiresElements.length; i++) {
for (i = 0; i < hiresElements.length; i++) {
var h = hiresElements[i];
if (h.tagName != "IMG") continue;
var src = h.getAttribute("src");
Expand Down

0 comments on commit e6aa6e4

Please sign in to comment.