argument-string-time-zone-annotation.js (1193B)
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: Various forms of time zone annotation; critical flag has no effect 8 features: [Temporal] 9 includes: [temporalHelpers.js] 10 ---*/ 11 12 const tests = [ 13 ["2019-12-15T15:23[Asia/Kolkata]", "named, with no offset"], 14 ["2019-12-15T15:23[!Europe/Vienna]", "named, with ! and no offset"], 15 ["2019-12-15T15:23[+00:00]", "numeric, with no offset"], 16 ["2019-12-15T15:23[!-02:30]", "numeric, with ! and no offset"], 17 ["2019-12-15T15:23+00:00[UTC]", "named, with offset"], 18 ["2019-12-15T15:23+00:00[!Africa/Abidjan]", "named, with offset and !"], 19 ["2019-12-15T15:23+00:00[+01:00]", "numeric, with offset"], 20 ["2019-12-15T15:23+00:00[!-08:00]", "numeric, with offset and !"], 21 ]; 22 23 tests.forEach(([arg, description]) => { 24 const result = Temporal.PlainYearMonth.from(arg); 25 26 TemporalHelpers.assertPlainYearMonth( 27 result, 28 2019, 12, "M12", 29 `time zone annotation (${description})` 30 ); 31 }); 32 33 reportCompare(0, 0);