Bug 1205707 part 2 - Add test. r=Waldo

This commit is contained in:
Jan de Mooij 2015-11-21 20:53:28 +01:00
parent 9845a3d206
commit f37442670f

View File

@ -0,0 +1,6 @@
(new Int8Array(3)).join();
[Math.abs, Math.abs].forEach(x => {
try {
Int8Array.prototype.join.call(x);
} catch(e) {}
});