Make "View Source of Frame" inherit the charset of the document in the

frame.  Bug 85346, r=ftang, sr=blizzard, a=asa
This commit is contained in:
bzbarsky%mit.edu 2001-06-20 00:39:11 +00:00
Родитель 3a75667d13
Коммит 35dade1ebc
1 изменённых файлов: 5 добавлений и 4 удалений

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

@ -446,7 +446,8 @@ nsContextMenu.prototype = {
window.openDialog( "chrome://navigator/content/viewSource.xul",
"_blank",
"scrollbars,resizable,chrome,dialog=no",
this.target.ownerDocument.location.href);
this.target.ownerDocument.location.href,
"charset=" + this.target.ownerDocument.characterSet);
},
viewInfo : function () {
BrowserPageInfo();