mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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), "");
|
||
|
}
|