argument-propertybag-timezone-string-year-zero.js (692B)
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 "-000000-10-31T17:45Z", 13 "-000000-10-31T17:45+00:00[UTC]", 14 ]; 15 invalidStrings.forEach((timeZone) => { 16 assert.throws( 17 RangeError, 18 () => Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone }), 19 "reject minus zero as extended year" 20 ); 21 }); 22 23 reportCompare(0, 0);