• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Math/

Lines Matching refs:log

24     ECMA Section:       15.8.2.10  Math.log(x)
40 var TITLE = "Math.log(x)";
52 array[item++] = new TestCase( SECTION, "Math.log.length", 1, Math.log.length );
54 array[item++] = new TestCase( SECTION, "Math.log()", Number.NaN, Math.log() );
55 array[item++] = new TestCase( SECTION, "Math.log(void 0)", Number.NaN, Math.log(void 0) );
56 array[item++] = new TestCase( SECTION, "Math.log(null)", Number.NEGATIVE_INFINITY, Math.log(null) );
57 array[item++] = new TestCase( SECTION, "Math.log(true)", 0, Math.log(true) );
58 array[item++] = new TestCase( SECTION, "Math.log(false)", -Infinity, Math.log(false) );
59 array[item++] = new TestCase( SECTION, "Math.log('0')", -Infinity, Math.log('0') );
60 array[item++] = new TestCase( SECTION, "Math.log('1')", 0, Math.log('1') );
61 array[item++] = new TestCase( SECTION, "Math.log('Infinity')", Infinity, Math.log("Infinity") );
63 array[item++] = new TestCase( SECTION, "Math.log(NaN)", Number.NaN, Math.log(Number.NaN) );
64 array[item++] = new TestCase( SECTION, "Math.log(-0.0000001)", Number.NaN, Math.log(-0.000001) );
65 array[item++] = new TestCase( SECTION, "Math.log(-1)", Number.NaN, Math.log(-1) );
66 array[item++] = new TestCase( SECTION, "Math.log(0)", Number.NEGATIVE_INFINITY, Math.log(0) );
67 array[item++] = new TestCase( SECTION, "Math.log(-0)", Number.NEGATIVE_INFINITY, Math.log(-0));
68 array[item++] = new TestCase( SECTION, "Math.log(1)", 0, Math.log(1) );
69 array[item++] = new TestCase( SECTION, "Math.log(Infinity)", Number.POSITIVE_INFINITY, Math.log(Number.POSITIVE_INFINITY) );
70 array[item++] = new TestCase( SECTION, "Math.log(-Infinity)", Number.NaN, Math.log(Number.NEGATIVE_INFINITY) );