tor-browser

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

proto-from-ctor-realm.js (2525B)


      1 // Copyright (C) 2019 Alexey Shvayka. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-intl.datetimeformat
      6 description: Default [[Prototype]] value derived from realm of the NewTarget.
      7 info: |
      8  Intl.DateTimeFormat ( [ locales [ , options ] ] )
      9 
     10  1. If NewTarget is undefined, let newTarget be the active function object, else let newTarget be NewTarget.
     11  2. Let dateTimeFormat be ? OrdinaryCreateFromConstructor(newTarget, "%DateTimeFormatPrototype%", « ... »).
     12  ...
     13  6. Return dateTimeFormat.
     14 
     15  OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] )
     16 
     17  ...
     18  2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto).
     19  3. Return ObjectCreate(proto, internalSlotsList).
     20 
     21  GetPrototypeFromConstructor ( constructor, intrinsicDefaultProto )
     22 
     23  ...
     24  3. Let proto be ? Get(constructor, 'prototype').
     25  4. If Type(proto) is not Object, then
     26    a. Let realm be ? GetFunctionRealm(constructor).
     27    b. Set proto to realm's intrinsic object named intrinsicDefaultProto.
     28  5. Return proto.
     29 features: [cross-realm, Reflect, Symbol]
     30 ---*/
     31 
     32 var other = $262.createRealm().global;
     33 var newTarget = new other.Function();
     34 var dtf;
     35 
     36 newTarget.prototype = undefined;
     37 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     38 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is undefined');
     39 
     40 newTarget.prototype = null;
     41 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     42 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is null');
     43 
     44 newTarget.prototype = false;
     45 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     46 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is a Boolean');
     47 
     48 newTarget.prototype = 'str';
     49 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     50 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is a String');
     51 
     52 newTarget.prototype = Symbol();
     53 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     54 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is a Symbol');
     55 
     56 newTarget.prototype = 1;
     57 dtf = Reflect.construct(Intl.DateTimeFormat, [], newTarget);
     58 assert.sameValue(Object.getPrototypeOf(dtf), other.Intl.DateTimeFormat.prototype, 'newTarget.prototype is a Number');
     59 
     60 reportCompare(0, 0);