зеркало из https://github.com/mozilla/pjs.git
Unit test for bug 383018. Author: Adam Guthrie <ispiked@gmail.com
This commit is contained in:
Родитель
856f1b4974
Коммит
84bed24f98
|
@ -0,0 +1,11 @@
|
|||
// Make sure that we can resolve the ascii charset alias to us-ascii
|
||||
// (bug 383018)
|
||||
|
||||
function run_test() {
|
||||
var ccm = Components.classes["@mozilla.org/charset-converter-manager;1"];
|
||||
var ccms = ccm.getService(Components.interfaces.nsICharsetConverterManager);
|
||||
|
||||
var alias = ccms.getCharsetAlias("ascii");
|
||||
// ascii should be an alias for us-ascii
|
||||
do_check_eq(alias, "us-ascii");
|
||||
}
|
Загрузка…
Ссылка в новой задаче