Skip to content

Commit

Permalink
Change dep-check-1.html to test an optimization we actually implement.
Browse files Browse the repository at this point in the history
  • Loading branch information
heycam committed Sep 14, 2017
1 parent a8ce140 commit 5cdb77c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perf-reftest/dep-check-1-ref.html
Expand Up @@ -7,7 +7,7 @@
for (let j = 0; j < 100; j++) {
s += "[y~=v" + j + "]";
}
s += " > span { background-color: yellow; }";
s += " { background-color: yellow; }";
var style = document.createElement("style");
style.textContent = s;
document.head.appendChild(style);
Expand Down
2 changes: 1 addition & 1 deletion perf-reftest/dep-check-1.html
Expand Up @@ -8,7 +8,7 @@
for (let j = 0; j < 100; j++) {
s += "[y~=v" + j +"]";
}
s += " > span { background-color: yellow; }";
s += " { background-color: yellow; }";
}
var style = document.createElement("style");
style.textContent = s;
Expand Down

0 comments on commit 5cdb77c

Please sign in to comment.