Charset override work: add API to force charset.

This commit is contained in:
cata%netscape.com 2006-09-14 05:50:20 +00:00
Родитель 2a43bf8cc9
Коммит 8f41e47ef7
1 изменённых файлов: 18 добавлений и 0 удалений

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

@ -916,6 +916,24 @@ function BrowserEditBookmarks()
}
}
function BrowserSetForcedCharacterSet(aCharset)
{
if (appCore != null) {
appCore.SetForcedCharset(aCharset);
} else {
dump("BrowserAppCore has not been created!\n");
}
}
function BrowserSetForcedDetector()
{
if (appCore != null) {
appCore.SetForcedDetector();
} else {
dump("BrowserAppCore has not been created!\n");
}
}
function BrowserClose()
{
// This code replicates stuff in Shutdown(). It is here because