tor-browser

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

bug1506968.js (224B)


      1 // |jit-test| skip-if: typeof Intl === 'undefined'
      2 function f(a, b) {
      3    a.formatToParts();
      4    a.format();
      5 }
      6 var a = new Intl.NumberFormat();
      7 f(a, []);
      8 try {
      9    f();
     10 } catch (e) {}
     11 f(a, []);
     12 try {
     13    f();
     14 } catch (e) {}