blob: 71589f53dfe78367fdbed25a4ec7fafe0c57c763 [file] [log] [blame]
try {
decodeURIComponent('%ED%A0%80');
assertEq(true, false, "expected an URIError");
} catch (e) {
assertEq(e instanceof URIError, true);
reportCompare(true,true);
}