argument-string-trailing-junk.js (497B)
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.plaintime.from 7 description: RangeError thrown if a string argument has trailing junk 8 features: [Temporal, arrow-function] 9 ---*/ 10 11 const arg = "15:23:30.100junk"; 12 assert.throws(RangeError, () => Temporal.PlainTime.from(arg)); 13 14 reportCompare(0, 0);