argument-string-minus-sign.js (621B)
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.plaintime.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 "\u2212009999-11-18T15:23:30.12", 14 ]; 15 16 invalidStrings.forEach((arg) => { 17 assert.throws( 18 RangeError, 19 () => Temporal.PlainTime.from(arg), 20 `variant minus sign: ${arg}` 21 ); 22 }); 23 24 reportCompare(0, 0);