subclassing-ignored.js (641B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2021 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.from 7 description: The receiver is never called when calling from() 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 TemporalHelpers.checkSubclassingIgnoredStatic( 13 Temporal.PlainDateTime, 14 "from", 15 ["2000-05-02T12:34:56.987654321"], 16 (result) => TemporalHelpers.assertPlainDateTime(result, 2000, 5, "M05", 2, 12, 34, 56, 987, 654, 321), 17 ); 18 19 reportCompare(0, 0);