Skip to content

Commit

Permalink
declar var elements - fixes squizlabs#321
Browse files Browse the repository at this point in the history
  • Loading branch information
malcomio committed Dec 19, 2024
1 parent c187a4b commit b7ce8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Standards/WCAG2AAA/Sniffs/Principle1/Guideline1_1/1_1_1.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ _global.HTMLCS_WCAG2AAA_Sniffs_Principle1_Guideline1_1_1_1_1 = {
}
};

elements = HTMLCS.util.getAllElements(top, 'img, area, input[type="image"]');
var elements = HTMLCS.util.getAllElements(top, 'img, area, input[type="image"]');

for (var el = 0; el < elements.length; el++) {
var element = elements[el];
Expand Down

0 comments on commit b7ce8d1

Please sign in to comment.