| Index: chrome/content/index.html | 
| =================================================================== | 
| --- a/chrome/content/index.html | 
| +++ b/chrome/content/index.html | 
| @@ -38,17 +38,17 @@ | 
| zipReader.close(); | 
| } | 
| result.sort(); | 
| return result; | 
| } | 
| let files = getTestFiles(); | 
| - for each (let file in files) | 
| + for (let file of files) | 
| { | 
| let script = document.createElement("script"); | 
| script.setAttribute("src", file); | 
| script.setAttribute("type", "text/javascript;version=1.7"); | 
| document.documentElement.appendChild(script); | 
| } | 
| </script> | 
| </head> |