year-zero.js (725B)
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.plainyearmonth.from 7 description: Negative zero, as an extended year, is rejected 8 features: [Temporal, arrow-function] 9 ---*/ 10 11 const invalidStrings = [ 12 "-000000-06", 13 "-000000-06-24", 14 "-000000-06-24T15:43:27", 15 "-000000-06-24T15:43:27+01:00", 16 "-000000-06-24T15:43:27+00:00[UTC]", 17 ]; 18 19 invalidStrings.forEach((arg) => { 20 assert.throws( 21 RangeError, 22 () => Temporal.PlainYearMonth.from(arg), 23 "reject minus zero as extended year" 24 ); 25 }); 26 27 reportCompare(0, 0);