2016-06-30 20:05:47 +02:00
|
|
|
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2017-06-29 17:31:57 +02:00
|
|
|
esid: sec-isnan-number
|
2016-06-30 20:05:47 +02:00
|
|
|
description: >
|
|
|
|
The length property of isNaN is 1
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.sameValue(isNaN.length, 1, "The value of `isNaN.length` is `1`");
|
|
|
|
|
|
|
|
verifyNotEnumerable(isNaN, "length");
|
|
|
|
verifyNotWritable(isNaN, "length");
|
|
|
|
verifyConfigurable(isNaN, "length");
|