Bug 175893 Make XUL <tab>'s focusable

Relanding missing line from tabbrowser.xml following landing of aviary branch -
previously reviewed
This commit is contained in:
bugzilla%arlen.demon.co.uk 2007-08-22 04:59:47 +00:00
Родитель bb417c3fd8
Коммит ff8e5cb0bf
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -633,10 +633,11 @@
function setFocus(element) {
document.commandDispatcher.suppressFocusScroll = true;
Components.lookupMethod(element, "focus").call(element);
document.commandDispatcher.suppressFocusScroll = false;
document.commandDispatcher.suppressFocusScroll = false;
}
setTimeout(setFocus, 0, window.content);
// Use setTimeout to avoid focus outline ghosting.
setTimeout(setFocus, 0, whatToFocus);
]]>
</body>
</method>