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 test1() {
2 function getchar(s, i) {
3 return s[i];
4 }
5 for (var i=0; i<70; i++) {
6 assertEq(getchar("foo", 0), "f");
7 assertEq(getchar("bar", 2), "r");
8 }
9 assertEq(getchar("foo", 3), undefined);
10 }
11 test1();