Bug 229993 Disable history and security in Venkman source panes thus keeping x-jsd: URLs out of global history r=rginda

This commit is contained in:
neil%parkwaycc.co.uk 2004-01-05 00:29:13 +00:00
Родитель c76ae8bca1
Коммит d3bfed6595
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2961,10 +2961,11 @@ function s2v_createframe (sourceTab, index, raiseFlag)
sourceTab.tab = tab;
var tabPanel = document.createElement("tabpanel");
tabPanel.setAttribute ("flex", "1");
var iframe = document.createElement("browser");
iframe.setAttribute ("flex", "1");
iframe.setAttribute ("context", "context:source2");
iframe.setAttribute ("disablehistory", "true");
iframe.setAttribute ("disablesecurity", "true");
iframe.setAttribute ("type", "content");
iframe.setAttribute ("onclick",
"console.views.source2.onSourceClick(event);");