| Index: lib/requestNotifier.js | 
| =================================================================== | 
| --- a/lib/requestNotifier.js | 
| +++ b/lib/requestNotifier.js | 
| @@ -308,17 +308,17 @@ function RequestEntry(node, topWnd, cont | 
|  | 
| if (filter.text in stats.filters) | 
| stats.filters[filter.text]++; | 
| else | 
| stats.filters[filter.text] = 1; | 
| } | 
|  | 
| // Notify listeners | 
| -  for each (let notifier in activeNotifiers) | 
| +  for (let notifier of activeNotifiers) | 
| if (!notifier.window || notifier.window == topWnd) | 
| notifier.notifyListener(topWnd, node, this); | 
| } | 
| RequestEntry.prototype = | 
| { | 
| /** | 
| * Content type of the request (one of the nsIContentPolicy constants) | 
| * @type Integer | 
|  |