Index: chrome/content/tests/performance/filter_fromText.html |
=================================================================== |
--- a/chrome/content/tests/performance/filter_fromText.html |
+++ b/chrome/content/tests/performance/filter_fromText.html |
@@ -40,17 +40,17 @@ |
document.getElementById("result").textContent = ""; |
document.getElementById("progress").style.display = ""; |
runTests(runTest, cleanup, finalize); |
} |
function runTest() |
{ |
- for each (let text in filters) |
+ for (let text of filters) |
Filter.fromText(text); |
} |
function cleanup() |
{ |
// Clear cache |
Filter.knownFilters = {__proto__: null}; |
} |