tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

args10.js (295B)


      1 actual = '';
      2 expected = 'function h(x, y) { return arguments; },2,4,8,';
      3 
      4 function h(x, y) { return arguments; }
      5 
      6 var p;
      7 for (var i = 0; i < 5; ++i) {
      8  p = h(i, i*2);
      9 }
     10 appendToActual(p.callee);
     11 appendToActual(p.length);
     12 appendToActual(p[0]);
     13 appendToActual(p[1]);
     14 
     15 
     16 assertEq(actual, expected)