Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 function TestCase(n, d, e, a) {}
2 function reportCompare (expected, actual, description) {
3 var testcase = new TestCase("unknown-test-name", description, expected, actual);
4 }
5 var status = 'Testing scope after changing obj.__proto__';
6 function test() {
7 let ( actual = [ ] ) TestCase .__proto__ = null;
8 reportCompare (expect, actual, status);
9 }
10 var actual = 'error';
11 var expect = 'error';
12 for (i = 0; i < 12000; i++) {
13 test();
14 }