summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/isNaN/prop-desc.js
blob: f4b2d6b4cf571c898d2b55c4946877ac808bc4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-isnan-number
description: >
  Property descriptor for isNaN
includes: [propertyHelper.js]
---*/

verifyNotEnumerable(this, "isNaN");
verifyWritable(this, "isNaN");
verifyConfigurable(this, "isNaN");

reportCompare(0, 0);