argument-string-minus-sign.js (733B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2024 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: Non-ASCII minus sign is not acceptable 8 features: [Temporal] 9 ---*/ 10 11 const invalidStrings = [ 12 "1976-11-18T15:23:30.12\u221202:00", 13 "1976-11-18T15:23:30.12-02:00[\u221202:00]", 14 "1976-11-18T15:23:30.12\u221202:00[\u221202:00]", 15 "\u2212009999-11-18T15:23:30.12[UTC]", 16 ]; 17 18 invalidStrings.forEach((arg) => { 19 assert.throws( 20 RangeError, 21 () => Temporal.ZonedDateTime.from(arg), 22 `variant minus sign: ${arg}` 23 ); 24 }); 25 26 reportCompare(0, 0);