tor-browser

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

testArrayBufferSpeciesDelete.js (145B)


      1 delete ArrayBuffer[Symbol.species];
      2 var a = new Uint8Array(new Uint8Array([1, 2]));
      3 assertEq(a.length, 2);
      4 assertEq(a[0], 1);
      5 assertEq(a[1], 2);