mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 616009 - Add missing test for bug 616009. r=needed-tests
This commit is contained in:
parent
1c4f4d1b14
commit
b7320b740b
35
js/src/jit-test/tests/basic/bug616009.js
Normal file
35
js/src/jit-test/tests/basic/bug616009.js
Normal file
@ -0,0 +1,35 @@
|
||||
function run() {
|
||||
var obj = {
|
||||
toJSON: function() {
|
||||
return {
|
||||
key: {
|
||||
toJSON: function() {
|
||||
for (i=0; i!=1<<10; ++i)
|
||||
new Object();
|
||||
var big = unescape("%udddd");
|
||||
while (big.length != 0x100000)
|
||||
big += big;
|
||||
for (i=0; i!=32; ++i)
|
||||
new String(big+i);
|
||||
return "whatever";
|
||||
}
|
||||
},
|
||||
__iterator__: function() {
|
||||
return {
|
||||
next: function() {
|
||||
return "key";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var repl = function(id, val) {
|
||||
this[0]++;
|
||||
return val;
|
||||
};
|
||||
|
||||
JSON.stringify(obj, repl);
|
||||
}
|
||||
run();
|
Loading…
Reference in New Issue
Block a user