js/src/jit-test/tests/basic/bug808483.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/basic/bug808483.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +pSandbox = newGlobal();
     1.5 +evalcx("\
     1.6 +    x = ArrayBuffer;\
     1.7 +    y = Map();\
     1.8 +    x += 1;\
     1.9 +    w = x;\
    1.10 +    x += '0';\
    1.11 +    z = x;\
    1.12 +", pSandbox);
    1.13 +evalcx("\
    1.14 +    x + '0';\
    1.15 +", pSandbox);
    1.16 +evalcx("\
    1.17 +    y.delete(z);\
    1.18 +    w.slice(2);\
    1.19 +", pSandbox)

mercurial