mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
7 lines
274 B
JavaScript
7 lines
274 B
JavaScript
// crash test with invaild parameter (bug 522931)
|
|
function run_test()
|
|
{
|
|
var textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"].getService(Components.interfaces.nsITextToSubURI);
|
|
do_check_eq(textToSubURI.UnEscapeAndConvert("UTF-8", null), "");
|
|
}
|