js/src/jit-test/tests/ion/bug836705.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:e66843f437bb
1
2 Object.prototype[3] = 3;
3 var sjcl = {
4 cipher: {},
5 };
6 sjcl.cipher.aes = function (a) {
7 d = a.slice(0);
8 for (a=0; a < 60; a++) {
9 c = d[a - 1];
10 }
11 };
12 new sjcl.cipher.aes([0xffffffff, 0xffffffff]);

mercurial