Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/tests/performance/matcher_init.html

Issue 6423769060999168: Issue 301 - adblockplustests: Use for (.. of ..) (Closed)
Patch Set: Created April 12, 2014, 1:48 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()
« no previous file with comments | « chrome/content/tests/performance/filter_fromText.html ('k') | chrome/content/tests/performance/matching.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld