diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/isNaN/prop-desc.js')
-rw-r--r-- | js/src/tests/test262/built-ins/isNaN/prop-desc.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/isNaN/prop-desc.js b/js/src/tests/test262/built-ins/isNaN/prop-desc.js new file mode 100644 index 0000000000..f4b2d6b4cf --- /dev/null +++ b/js/src/tests/test262/built-ins/isNaN/prop-desc.js @@ -0,0 +1,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); |