comparison: js/src/jit-test/tests/basic/bug705895-1.js
js/src/jit-test/tests/basic/bug705895-1.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 c = (0).__proto__ |
|
2 function f(o) { |
|
3 o.__proto__ = null |
|
4 for (x in o) {} |
|
5 } |
|
6 for (i = 0; i < 9; i++) { |
|
7 f(c) |
|
8 Function.prototype.__proto__.__proto__ = c |
|
9 for (x in Function.prototype.__proto__) {} |
|
10 f(Math.__proto__) |
|
11 } |