Bug 264102 Chrome should use document.title instead of window.title - progressDlg fix v0.1

p=me r/sr=neil.parkwaycc.co.uk


git-svn-id: svn://10.0.0.236/trunk@165678 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugzilla%arlen.demon.co.uk 2004-11-23 22:49:10 +00:00
parent 9b7827dd9b
commit 13b9e6f4a3

View File

@ -613,9 +613,9 @@ nsProgressDialog.prototype = {
title = this.replaceInsert( title, 2, this.percent );
}
// Set <window>'s title attribute.
// Set dialog's title property.
if ( this.dialog ) {
this.dialog.title = title;
this.dialog.document.title = title;
}
},