Index: chrome/content/tests/performance/matcher_init.html |
=================================================================== |
--- a/chrome/content/tests/performance/matcher_init.html |
+++ b/chrome/content/tests/performance/matcher_init.html |
@@ -46,17 +46,17 @@ |
runTests(runTest, cleanup, finalize); |
} |
function runTest() |
{ |
// Add everything to the same matcher, don't bother separating whitelist and blacklist |
let matcher = new CombinedMatcher(); |
- for each (let filter in filters) |
+ for (let filter of filters) |
matcher.add(filter); |
} |
function cleanup() |
{ |
} |
function finalize() |