Bug 877589 - Add test case. DONTBUILD

This commit is contained in:
Kannan Vijayan 2013-06-19 12:06:43 -04:00
parent 25236f410f
commit 000c04f611

View File

@ -0,0 +1,7 @@
function x() {
[1];
}
Array.prototype.__proto__ = {};
x();
Array.prototype.__proto__ = null;
x();