Merge autoland to mozilla-central. a=merge
[gecko.git] / js / src / tests / test262 / built-ins / Temporal / PlainMonthDay / prototype / prop-desc.js
blobc3502f6633ea701b1ad40abd40586ac96a345e33
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.
5 /*---
6 esid: sec-temporal-plainmonthday-prototype
7 description: The "prototype" property of Temporal.PlainMonthDay
8 includes: [propertyHelper.js]
9 features: [Temporal]
10 ---*/
12 assert.sameValue(typeof Temporal.PlainMonthDay.prototype, "object");
13 assert.notSameValue(Temporal.PlainMonthDay.prototype, null);
15 verifyProperty(Temporal.PlainMonthDay, "prototype", {
16   writable: false,
17   enumerable: false,
18   configurable: false,
19 });
21 reportCompare(0, 0);