tor-browser

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

legacy-factory-function-builtin-properties.window.js (250B)


      1 "use strict";
      2 
      3 test(() => {
      4  const ownPropKeys = Reflect.ownKeys(Image).slice(0, 3);
      5  assert_array_equals(ownPropKeys, ["length", "name", "prototype"]);
      6 }, 'Legacy factory function property enumeration order of "length", "name", and "prototype"');