Bug 274553 - Blocking iframes either via an extension or userchrome.css breaks find toolbar search. patch from Michael Clackler <mikeclackler@hotmail.com>, r=mconnor

This commit is contained in:
mozilla.mano%sent.com 2005-03-23 11:10:46 +00:00
Родитель 53dcdf3878
Коммит bbf4c27dd3
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -243,9 +243,10 @@ function highlight(range, node)
function getSelectionControllerForFindToolbar(ds)
{
var display = ds.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsISelectionDisplay);
if (!display)
return null;
try {
var display = ds.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsISelectionDisplay);
}
catch (e) { return null; }
return display.QueryInterface(Components.interfaces.nsISelectionController);
}