Skip to content

Commit

Permalink
Fix up indentation in reflected-as-value.html (#41526)
Browse files Browse the repository at this point in the history
  • Loading branch information
nt1m authored Aug 18, 2023
1 parent f0a0171 commit 29c8bd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions preload/reflected-as-value.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
var link = document.createElement("link");
var keys = Object.keys(values);
for (var i = 0; i < keys.length; ++i) {
test(function() {
link.as = keys[i];
assert_equals(link.as, values[keys[i]]);
}, `Link preload "as" value for "${keys[i]}" should be "${values[keys[i]]}".`);
test(function() {
link.as = keys[i];
assert_equals(link.as, values[keys[i]]);
}, `Link preload "as" value for "${keys[i]}" should be "${values[keys[i]]}".`);
}
</script>

0 comments on commit 29c8bd8

Please sign in to comment.