argument-string-variant-decimal-separator.js (581B)
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: Can parse variant decimal separator. 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 TemporalHelpers.assertZonedDateTimesEqual( 13 Temporal.ZonedDateTime.from("1976-11-18T15:23:30,12-08:00[-08:00]"), 14 new Temporal.ZonedDateTime(217207410120000000n, "-08:00")); 15 16 reportCompare(0, 0);