tor-browser

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

subclass.js (931B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2022 Igalia, S.L. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-temporal.plaindatetime
      7 description: Test for Temporal.PlainDateTime subclassing.
      8 includes: [temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 class CustomPlainDateTime extends Temporal.PlainDateTime {
     13 }
     14 
     15 const instance = new CustomPlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
     16 TemporalHelpers.assertPlainDateTime(instance, 2000, 5, "M05", 2, 12, 34, 56, 987, 654, 321);
     17 assert.sameValue(Object.getPrototypeOf(instance), CustomPlainDateTime.prototype, "Instance of CustomPlainDateTime");
     18 assert(instance instanceof CustomPlainDateTime, "Instance of CustomPlainDateTime");
     19 assert(instance instanceof Temporal.PlainDateTime, "Instance of Temporal.PlainDateTime");
     20 
     21 reportCompare(0, 0);