tor-browser

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

bug1883865.js (425B)


      1 // Checks proper padding for nested tryNotes.
      2 
      3 new WebAssembly.Module(wasmTextToBinary(`(module
      4  (func
      5      try_table $l3
      6        try_table $l4
      7          try_table $l5
      8          end
      9        end
     10      end
     11  )
     12 )`));
     13 
     14 new WebAssembly.Module(wasmTextToBinary(`(module
     15  (func
     16      try_table $l3
     17        try_table $l4
     18          try_table $l5
     19          end
     20          try_table $l5a
     21          end
     22        end
     23      end
     24  )
     25 )`));