// |reftest| shell-option(--enable-temporal) skip-if(!this.hasOwnProperty('Temporal')||!xulRuntime.shell) -- Temporal is not enabled unconditionally, requires shell-options // Copyright (C) 2021 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: The receiver is never called when calling from() includes: [temporalHelpers.js] features: [Temporal] ---*/ TemporalHelpers.checkSubclassingIgnoredStatic( Temporal.PlainDate, "from", ["2000-05-02"], (result) => TemporalHelpers.assertPlainDate(result, 2000, 5, "M05", 2), ); reportCompare(0, 0);