tor-browser

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

bug839315.js (249B)


      1 function f(x) {
      2    switch(x) {
      3      case 0:
      4      case 100:
      5    }
      6 }
      7 f("");
      8 evaluate('f({})', { noScriptRval : true });
      9 
     10 function g(x) {
     11    switch(x) {
     12      case 0.1:
     13      case 100:
     14    }
     15 }
     16 
     17 g(false);
     18 evaluate('g({})', { noScriptRval : true });