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 | function strings() |
michael@0 | 2 | { |
michael@0 | 3 | var a = [], b = -1; |
michael@0 | 4 | var s = "abcdefghij", s2 = "a"; |
michael@0 | 5 | var f = "f"; |
michael@0 | 6 | var c = 0, d = 0, e = 0, g = 0; |
michael@0 | 7 | for (var i = 0; i < 10; i++) { |
michael@0 | 8 | a[i] = (s.substring(i, i+1) + s[i] + String.fromCharCode(s2.charCodeAt(0) + i)).concat(i) + i; |
michael@0 | 9 | if (s[i] == f) |
michael@0 | 10 | c++; |
michael@0 | 11 | if (s[i] != 'b') |
michael@0 | 12 | d++; |
michael@0 | 13 | if ("B" > s2) |
michael@0 | 14 | g++; // f already used |
michael@0 | 15 | if (s2 < "b") |
michael@0 | 16 | e++; |
michael@0 | 17 | b = s.length; |
michael@0 | 18 | } |
michael@0 | 19 | return a.toString() + b + c + d + e + g; |
michael@0 | 20 | } |
michael@0 | 21 | assertEq(strings(), "aaa00,bbb11,ccc22,ddd33,eee44,fff55,ggg66,hhh77,iii88,jjj991019100"); |