1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
2 // Copyright (C) 2021 Igalia, S.L. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
6 esid: sec-temporal.duration
7 description: Undefined arguments should be treated as zero.
8 includes: [temporalHelpers.js]
12 const args = [1, 1, 1, 1, 1, 1, 1];
14 const explicit = new Temporal.Duration(...args, undefined);
15 TemporalHelpers.assertDuration(explicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "explicit");
17 const implicit = new Temporal.Duration(...args);
18 TemporalHelpers.assertDuration(implicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "implicit");