| Index: chrome/content/tests/performance/matching.html |
| =================================================================== |
| --- a/chrome/content/tests/performance/matching.html |
| +++ b/chrome/content/tests/performance/matching.html |
| @@ -54,25 +54,25 @@ |
| .join("\n"); |
| addresses = document.getElementById("addresses").value.replace(/^[\r\n]+/, "") |
| .replace(/[\r\n]+$/, "") |
| .split(/[\r\n]+/); |
| document.getElementById("result").textContent = ""; |
| document.getElementById("progress").style.display = ""; |
| defaultMatcher.clear(); |
| - for each (let filter in filters) |
| + for (let filter of filters) |
| defaultMatcher.add(filter); |
| runTests(runTest, cleanup, finalize); |
| } |
| function runTest() |
| { |
| - for each (let address in addresses) |
| + for (let address of addresses) |
| defaultMatcher.matchesAny(address, "IMAGE", null, false); |
| } |
| function cleanup() |
| { |
| // Add and remove a dummy filter to clear matcher's cache |
| let dummy = Filter.fromText("foobar"); |
| defaultMatcher.add(dummy); |