summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js')
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
new file mode 100644
index 0000000000..312d87afd6
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
@@ -0,0 +1,30 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.weekofyear
+description: >
+ In the ISO 8601 week calendar, calendar week number 1 of a calendar year is
+ the week including the first Thursday of that year (based on the principle
+ that a week belongs to the same calendar year as the majority of its calendar
+ days). Because of this, some calendar days of the first calendar week of a
+ calendar year may be part of the preceding date calendar year, and some
+ calendar days of the last calendar week of a calendar year may be part of
+ the next calendar year.
+features: [Temporal]
+---*/
+
+//
+
+let calendar = new Temporal.Calendar("gregory");
+const date = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(date.weekOfYear, 1);
+
+calendar = new Temporal.Calendar("iso8601");
+const isodate = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(isodate.weekOfYear, 53);
+
+reportCompare(0, 0);