argument-string-trailing-junk.js (489B)
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.plainyearmonth.from 7 description: RangeError thrown if a string with trailing junk is used as a PlainYearMonth 8 features: [Temporal] 9 ---*/ 10 11 assert.throws(RangeError, () => Temporal.PlainYearMonth.from("1976-11junk")); 12 13 reportCompare(0, 0);