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 actual = '';
2 expected = '5,4,3,2,1,';
3
4 function f() {
5 while (arguments.length > 0) {
6 appendToActual(arguments[arguments.length-1]);
7 arguments.length--;
8 }
9 }
10
11 f(1, 2, 3, 4, 5);
12
13
14 assertEq(actual, expected)