argument-string-time-zone-annotation.js (1360B)
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.plaindate.compare 7 description: Various forms of time zone annotation; critical flag has no effect 8 features: [Temporal] 9 ---*/ 10 11 const tests = [ 12 ['2000-05-02[Asia/Kolkata]', 'named, with no time'], 13 ['2000-05-02[!Europe/Vienna]', 'named, with ! and no time'], 14 ['2000-05-02[+00:00]', 'numeric, with no time'], 15 ['2000-05-02[!-02:30]', 'numeric, with ! and no time'], 16 ["2000-05-02T15:23[America/Sao_Paulo]", "named, with no offset"], 17 ["2000-05-02T15:23[!Asia/Tokyo]", "named, with ! and no offset"], 18 ["2000-05-02T15:23[-02:30]", "numeric, with no offset"], 19 ["2000-05-02T15:23[!+00:00]", "numeric, with ! and no offset"], 20 ["2000-05-02T15:23+00:00[America/New_York]", "named, with offset"], 21 ["2000-05-02T15:23+00:00[!UTC]", "named, with offset and !"], 22 ["2000-05-02T15:23+00:00[+01:00]", "numeric, with offset"], 23 ["2000-05-02T15:23+00:00[!-08:00]", "numeric, with offset and !"], 24 ]; 25 26 tests.forEach(([arg, description]) => { 27 const result = Temporal.PlainDate.compare(arg, arg); 28 29 assert.sameValue( 30 result, 31 0, 32 `time zone annotation (${description})` 33 ); 34 }); 35 36 reportCompare(0, 0);