Bug 89710, typo broke Save Link As Bookmark functionality. r=harishd, sr=blake.

This commit is contained in:
heikki%netscape.com 2001-07-18 20:05:00 +00:00
Родитель f71acd700f
Коммит 0c114ee749
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -615,7 +615,7 @@ nsContextMenu.prototype = {
// Add this text to our collection.
text += " " + node.data;
} else if ( node.nodeType == Node.ELEMENT_NODE
&& node.localName.ToUpperCase() == "IMG" ) {
&& node.localName.toUpperCase() == "IMG" ) {
// If it has an alt= attribute, use that.
altText = node.getAttribute( "alt" );
if ( altText && altText != "" ) {