Bug 133842: Accesskey 'B' was incorrectly applied to every item in the View > Use Style menu. Patch by fantasai@escape.com, r=jag, sr=alecf, a=asa.

This commit is contained in:
caillon%returnzero.com 2002-03-31 02:13:19 +00:00
Родитель e005fcf041
Коммит 662e182b20
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1314,7 +1314,8 @@ function stylesheetFillPopup(menuPopup)
lastWithSameTitle = currentStyleSheets[currentStyleSheet.title];
if (!lastWithSameTitle) {
var menuItem = itemNoOptStyles.cloneNode(false);
var menuItem = document.createElement("menuitem");
menuItem.setAttribute("type", "radio");
menuItem.setAttribute("label", currentStyleSheet.title);
menuItem.setAttribute("data", currentStyleSheet.title);
menuItem.setAttribute("checked", !currentStyleSheet.disabled);