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.
michael@0 | 1 | |
michael@0 | 2 | var gTestcases = new Array(); |
michael@0 | 3 | var gTc = gTestcases.length; |
michael@0 | 4 | function TestCase( a) { |
michael@0 | 5 | this.actual = a; |
michael@0 | 6 | gTestcases[gTc++] = this; |
michael@0 | 7 | } |
michael@0 | 8 | function test() { |
michael@0 | 9 | for ( gTc=0; gTc < gTestcases.length; gTc++ ) { |
michael@0 | 10 | gTestcases[gTc].actual.toString() |
michael@0 | 11 | } |
michael@0 | 12 | } |
michael@0 | 13 | function testOverwritingSparseHole() { |
michael@0 | 14 | for (var i = 0; i < 50; i++) |
michael@0 | 15 | new TestCase(eval("VAR1 = 0; VAR2 = -1; VAR1 %= VAR2; VAR1")); |
michael@0 | 16 | } |
michael@0 | 17 | testOverwritingSparseHole(); |
michael@0 | 18 | test(); |
michael@0 | 19 | this.toSource(); |