diff --git a/xpfe/browser/resources/content/pageInfo.js b/xpfe/browser/resources/content/pageInfo.js index c476a068580..4ac4c6114ad 100644 --- a/xpfe/browser/resources/content/pageInfo.js +++ b/xpfe/browser/resources/content/pageInfo.js @@ -446,7 +446,7 @@ function makeTabs(aDocument, aWindow) { var num = aWindow.frames.length; for (var i = 0; i < num; i++) - makeTab(aWindow.frames[i].document, aWindow.frames[i]); // recurse through the frames + makeTabs(aWindow.frames[i].document, aWindow.frames[i]); // recurse through the frames } var formTree = document.getElementById("formtree");