From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../equals/argument-string-time-zone-annotation.js | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 js/src/tests/test262/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-string-time-zone-annotation.js (limited to 'js/src/tests/test262/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-string-time-zone-annotation.js') diff --git a/js/src/tests/test262/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-string-time-zone-annotation.js b/js/src/tests/test262/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-string-time-zone-annotation.js new file mode 100644 index 0000000000..797b6ceaf1 --- /dev/null +++ b/js/src/tests/test262/built-ins/Temporal/PlainYearMonth/prototype/equals/argument-string-time-zone-annotation.js @@ -0,0 +1,34 @@ +// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plainyearmonth.prototype.equals +description: Various forms of time zone annotation; critical flag has no effect +features: [Temporal] +---*/ + +const tests = [ + ["2019-12-15T15:23[Asia/Kolkata]", "named, with no offset"], + ["2019-12-15T15:23[!Europe/Vienna]", "named, with ! and no offset"], + ["2019-12-15T15:23[+00:00]", "numeric, with no offset"], + ["2019-12-15T15:23[!-02:30]", "numeric, with ! and no offset"], + ["2019-12-15T15:23+00:00[UTC]", "named, with offset"], + ["2019-12-15T15:23+00:00[!Africa/Abidjan]", "named, with offset and !"], + ["2019-12-15T15:23+00:00[+01:00]", "numeric, with offset"], + ["2019-12-15T15:23+00:00[!-08:00]", "numeric, with offset and !"], +]; + +const instance = new Temporal.PlainYearMonth(2019, 12); + +tests.forEach(([arg, description]) => { + const result = instance.equals(arg); + + assert.sameValue( + result, + true, + `time zone annotation (${description})` + ); +}); + +reportCompare(0, 0); -- cgit v1.2.3