blob: 436ac1ad96f43275a00c418c0bf13167974be1e5 [file] [log] [blame]
// Copyright 2016 Mozilla Corporation. All rights reserved.
// Copyright 2019 Igalia S.L. All rights reserved.
// This code is governed by the license found in the LICENSE file.
/*---
description: Property type and descriptor.
includes: [propertyHelper.js]
features: [Intl.DateTimeFormat-formatRange]
---*/
assert.sameValue(
typeof Intl.DateTimeFormat.prototype.formatRangeToParts,
'function',
'`typeof Intl.DateTimeFormat.prototype.formatRangeToParts` is `function`'
);
verifyProperty(Intl.DateTimeFormat.prototype, 'formatRangeToParts', {
enumerable: false,
writable: true,
configurable: true,
});