tor-browser

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

ignores-receiver.js (766B)


      1 // |reftest| skip-if(!Uint8Array.fromBase64) -- uint8array-base64 is not enabled unconditionally
      2 // Copyright (C) 2024 Kevin Gibbons. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 /*---
      5 esid: sec-uint8array.fromhex
      6 description: Uint8Array.fromHex ignores its receiver
      7 features: [uint8array-base64, TypedArray]
      8 ---*/
      9 
     10 var fromHex = Uint8Array.fromHex;
     11 var noReceiver = fromHex("aa");
     12 assert.sameValue(Object.getPrototypeOf(noReceiver), Uint8Array.prototype);
     13 
     14 class Subclass extends Uint8Array {
     15  constructor() {
     16    throw new Test262Error("subclass constructor called");
     17  }
     18 }
     19 var fromSubclass = Subclass.fromHex("aa");
     20 assert.sameValue(Object.getPrototypeOf(fromSubclass), Uint8Array.prototype);
     21 
     22 reportCompare(0, 0);