js/src/tests/js1_2/operator/strictEquality.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 /**
     8    Filename:     strictEquality.js
     9    Description:  'This tests the operator ==='
    11    Author:       Nick Lerissa
    12    Date:         Fri Feb 13 09:58:28 PST 1998
    13 */
    15 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
    16 var VERSION = 'no version';
    17 startTest();
    18 var TITLE = 'operator "==="';
    20 writeHeaderToLog('Executing script: strictEquality.js');
    21 writeHeaderToLog( SECTION + " "+ TITLE);
    23 new TestCase( SECTION, "('8' === 8)                              ",
    24 	      false,  ('8' === 8));
    26 new TestCase( SECTION, "(8 === 8)                                ",
    27 	      true,   (8 === 8));
    29 new TestCase( SECTION, "(8 === true)                             ",
    30 	      false,  (8 === true));
    32 new TestCase( SECTION, "(new String('') === new String(''))      ",
    33 	      false,  (new String('') === new String('')));
    35 new TestCase( SECTION, "(new Boolean(true) === new Boolean(true))",
    36 	      false,  (new Boolean(true) === new Boolean(true)));
    38 var anObject = { one:1 , two:2 };
    40 new TestCase( SECTION, "(anObject === anObject)                  ",
    41 	      true,  (anObject === anObject));
    43 new TestCase( SECTION, "(anObject === { one:1 , two:2 })         ",
    44 	      false,  (anObject === { one:1 , two:2 }));
    46 new TestCase( SECTION, "({ one:1 , two:2 } === anObject)         ",
    47 	      false,  ({ one:1 , two:2 } === anObject));
    49 new TestCase( SECTION, "(null === null)                          ",
    50 	      true,  (null === null));
    52 new TestCase( SECTION, "(null === 0)                             ",
    53 	      false,  (null === 0));
    55 new TestCase( SECTION, "(true === !false)                        ",
    56 	      true,  (true === !false));
    58 test();

mercurial