Skip to content

Commit 03bfdb4

Browse files
committed
[css-fonts-3] Fix type on onload eventHandler
resolves #3553
1 parent fe728e7 commit 03bfdb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

css-fonts-3/Fonts.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6420,7 +6420,7 @@ <h2 class=no-num id=property-index>Property index</h2>
64206420
window.onload = function () {
64216421
if (!("devicePixelRatio" in window && window.devicePixelRatio > 1)) return;
64226422
var i, hiresElements = document.getElementsByClassName("hires");
6423-
for (i = 0; i &lt; hiresElements.length; i++) {
6423+
for (i = 0; i < hiresElements.length; i++) {
64246424
var h = hiresElements[i];
64256425
if (h.tagName != "IMG") continue;
64266426
var src = h.getAttribute("src");

css-fonts-3/Overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6414,7 +6414,7 @@ <h2 class=no-num id=property-index>Property index</h2>
64146414
window.onload = function () {
64156415
if (!("devicePixelRatio" in window && window.devicePixelRatio > 1)) return;
64166416
var i, hiresElements = document.getElementsByClassName("hires");
6417-
for (i = 0; i &lt; hiresElements.length; i++) {
6417+
for (i = 0; i < hiresElements.length; i++) {
64186418
var h = hiresElements[i];
64196419
if (h.tagName != "IMG") continue;
64206420
var src = h.getAttribute("src");

0 commit comments

Comments
 (0)