summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/prototype/prototype_attributes.js
blob: 34e2511dda3a428d8b4a0eb80b8c291da6392420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// |reftest| skip -- Intl.DurationFormat is not supported
// Copyright (C) 2021 Nikhil Singhal. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-Intl.DurationFormat.prototype
description: Prototype attributes verification
info: |
  This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }.
features: [Intl.DurationFormat]
includes: [propertyHelper.js]
---*/

verifyProperty(Intl.DurationFormat, "prototype", {
  value: Intl.DurationFormat.prototype,
  writable: false,
  enumerable: false,
  configurable: false,
});

reportCompare(0, 0);