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