blob: 0b523cf5390f3ce3aa76700649d49a49be5222de [file] [log] [blame]
// 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.plaindate.from
description: Leap second is a valid ISO string for PlainDate
includes: [temporalHelpers.js]
features: [Temporal]
---*/
let arg = "2016-12-31T23:59:60";
const result1 = Temporal.PlainDate.from(arg);
TemporalHelpers.assertPlainDate(
result1,
2016, 12, "M12", 31,
"leap second is a valid ISO string for PlainDate"
);
const result2 = Temporal.PlainDate.from(arg, { overflow: "reject" });
TemporalHelpers.assertPlainDate(
result2,
2016, 12, "M12", 31,
"leap second is a valid ISO string for PlainDate"
);
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
const result3 = Temporal.PlainDate.from(arg);
TemporalHelpers.assertPlainDate(
result3,
2016, 12, "M12", 31,
"second: 60 is ignored in property bag for PlainDate"
);
const result4 = Temporal.PlainDate.from(arg, { overflow: "reject" });
TemporalHelpers.assertPlainDate(
result4,
2016, 12, "M12", 31,
"second: 60 is ignored in property bag for PlainDate even with overflow: reject"
);