Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | File Name: 15.8.2.4.js |
michael@0 | 9 | ECMA Section: 15.8.2.4 atan( x ) |
michael@0 | 10 | Description: return an approximation to the arc tangent of the |
michael@0 | 11 | argument. the result is expressed in radians and |
michael@0 | 12 | range is from -PI/2 to +PI/2. special cases: |
michael@0 | 13 | - if x is NaN, the result is NaN |
michael@0 | 14 | - if x == +0, the result is +0 |
michael@0 | 15 | - if x == -0, the result is -0 |
michael@0 | 16 | - if x == +Infinity, the result is approximately +PI/2 |
michael@0 | 17 | - if x == -Infinity, the result is approximately -PI/2 |
michael@0 | 18 | Author: christine@netscape.com |
michael@0 | 19 | Date: 7 july 1997 |
michael@0 | 20 | |
michael@0 | 21 | */ |
michael@0 | 22 | |
michael@0 | 23 | var SECTION = "15.8.2.4"; |
michael@0 | 24 | var VERSION = "ECMA_1"; |
michael@0 | 25 | var TITLE = "Math.atan()"; |
michael@0 | 26 | var BUGNUMBER="77391"; |
michael@0 | 27 | |
michael@0 | 28 | startTest(); |
michael@0 | 29 | |
michael@0 | 30 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 31 | |
michael@0 | 32 | new TestCase( SECTION, |
michael@0 | 33 | "Math.atan.length", |
michael@0 | 34 | 1, |
michael@0 | 35 | Math.atan.length ); |
michael@0 | 36 | |
michael@0 | 37 | new TestCase( SECTION, |
michael@0 | 38 | "Math.atan()", |
michael@0 | 39 | Number.NaN, |
michael@0 | 40 | Math.atan() ); |
michael@0 | 41 | |
michael@0 | 42 | new TestCase( SECTION, |
michael@0 | 43 | "Math.atan(void 0)", |
michael@0 | 44 | Number.NaN, |
michael@0 | 45 | Math.atan(void 0) ); |
michael@0 | 46 | |
michael@0 | 47 | new TestCase( SECTION, |
michael@0 | 48 | "Math.atan(null)", |
michael@0 | 49 | 0, |
michael@0 | 50 | Math.atan(null) ); |
michael@0 | 51 | |
michael@0 | 52 | new TestCase( SECTION, |
michael@0 | 53 | "Math.atan(NaN)", |
michael@0 | 54 | Number.NaN, |
michael@0 | 55 | Math.atan(Number.NaN) ); |
michael@0 | 56 | |
michael@0 | 57 | new TestCase( SECTION, |
michael@0 | 58 | "Math.atan('a string')", |
michael@0 | 59 | Number.NaN, |
michael@0 | 60 | Math.atan("a string") ); |
michael@0 | 61 | |
michael@0 | 62 | new TestCase( SECTION, |
michael@0 | 63 | "Math.atan('0')", |
michael@0 | 64 | 0, |
michael@0 | 65 | Math.atan('0') ); |
michael@0 | 66 | |
michael@0 | 67 | new TestCase( SECTION, |
michael@0 | 68 | "Math.atan('1')", |
michael@0 | 69 | Math.PI/4, |
michael@0 | 70 | Math.atan('1') ); |
michael@0 | 71 | |
michael@0 | 72 | new TestCase( SECTION, |
michael@0 | 73 | "Math.atan('-1')", |
michael@0 | 74 | -Math.PI/4, |
michael@0 | 75 | Math.atan('-1') ); |
michael@0 | 76 | |
michael@0 | 77 | new TestCase( SECTION, |
michael@0 | 78 | "Math.atan('Infinity)", |
michael@0 | 79 | Math.PI/2, |
michael@0 | 80 | Math.atan('Infinity') ); |
michael@0 | 81 | |
michael@0 | 82 | new TestCase( SECTION, |
michael@0 | 83 | "Math.atan('-Infinity)", |
michael@0 | 84 | -Math.PI/2, |
michael@0 | 85 | Math.atan('-Infinity') ); |
michael@0 | 86 | |
michael@0 | 87 | new TestCase( SECTION, |
michael@0 | 88 | "Math.atan(0)", |
michael@0 | 89 | 0, |
michael@0 | 90 | Math.atan(0) ); |
michael@0 | 91 | |
michael@0 | 92 | new TestCase( SECTION, |
michael@0 | 93 | "Math.atan(-0)", |
michael@0 | 94 | -0, |
michael@0 | 95 | Math.atan(-0) ); |
michael@0 | 96 | |
michael@0 | 97 | new TestCase( SECTION, |
michael@0 | 98 | "Infinity/Math.atan(-0)", |
michael@0 | 99 | -Infinity, |
michael@0 | 100 | Infinity/Math.atan(-0) ); |
michael@0 | 101 | |
michael@0 | 102 | new TestCase( SECTION, |
michael@0 | 103 | "Math.atan(Infinity)", |
michael@0 | 104 | Math.PI/2, |
michael@0 | 105 | Math.atan(Number.POSITIVE_INFINITY) ); |
michael@0 | 106 | |
michael@0 | 107 | new TestCase( SECTION, |
michael@0 | 108 | "Math.atan(-Infinity)", |
michael@0 | 109 | -Math.PI/2, |
michael@0 | 110 | Math.atan(Number.NEGATIVE_INFINITY) ); |
michael@0 | 111 | |
michael@0 | 112 | new TestCase( SECTION, |
michael@0 | 113 | "Math.atan(1)", |
michael@0 | 114 | Math.PI/4, |
michael@0 | 115 | Math.atan(1) ); |
michael@0 | 116 | |
michael@0 | 117 | new TestCase( SECTION, |
michael@0 | 118 | "Math.atan(-1)", |
michael@0 | 119 | -Math.PI/4, |
michael@0 | 120 | Math.atan(-1) ); |
michael@0 | 121 | |
michael@0 | 122 | test(); |