blob: da5b65ed1fdfcd30e809227d861ccb93f619aec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.
/*---
description: Testing descriptor property of Math.tanh
includes: [propertyHelper.js]
es6id: 20.2.2.34
---*/
verifyNotEnumerable(Math, "tanh");
verifyWritable(Math, "tanh");
verifyConfigurable(Math, "tanh");
reportCompare(0, 0);
|