Bug 432919 - "Help viewer content pane should not allow scripts, plugins, meta redirects, or subframes" [p=reed/dveditz r=Waldo (NPOTB)]

This commit is contained in:
reed@reedloden.com 2008-05-09 20:35:19 -07:00
Родитель 9c621afea3
Коммит c22f9600dd
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -137,6 +137,12 @@ function init() {
helpGlossaryPanel = document.getElementById("help-glossary-panel");
helpBrowser = document.getElementById("help-content");
// Turn off unnecessary features for security
helpBrowser.docShell.allowJavascript = false;
helpBrowser.docShell.allowPlugins = false;
helpBrowser.docShell.allowSubframes = false;
helpBrowser.docShell.allowMetaRedirects = false;
strBundle = document.getElementById("bundle_help");
emptySearchText = strBundle.getString("emptySearchText");