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 addConstraint(blaat) {
2 return blaat.v1
3 }
5 function ScaleConstraint() {
6 this.direction = null
7 this.v1 = {};
8 addConstraint(this);
9 }
11 function EqualityConstraint() {
12 this.v1 = {};
13 addConstraint(this);
14 }
16 function deltaBlue() {
17 new EqualityConstraint();
18 new ScaleConstraint();
19 }
21 for (var n = 0; n<100; n++) {
22 deltaBlue()
23 }