bug 347913. Notification accessibility regression. r=pilgrim, r=mconnor

This commit is contained in:
aaronleventhal%moonset.net 2006-08-08 20:16:49 +00:00
Родитель b30c777932
Коммит da206c39db
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -107,13 +107,14 @@
else
newitem.type = "warning";
if (!insertPos)
this._showNotification(newitem, true);
// Fire event for accessibility APIs
var event = document.createEvent("Events");
event.initEvent("AlertActive", true, true);
this.dispatchEvent(event);
newitem.dispatchEvent(event);
if (!insertPos)
this._showNotification(newitem, true);
return newitem;
]]>
</body>