1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_2/operator/equality.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +// |reftest| skip -- obsolete test 1.5 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 + 1.11 +/** 1.12 + Filename: equality.js 1.13 + Description: 'This tests the operator ==' 1.14 + 1.15 + Author: Nick Lerissa 1.16 + Date: Fri Feb 13 09:58:28 PST 1998 1.17 +*/ 1.18 + 1.19 +var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 1.20 +var VERSION = 'no version'; 1.21 +startTest(); 1.22 +var TITLE = 'operator "=="'; 1.23 + 1.24 +writeHeaderToLog('Executing script: equality.js'); 1.25 +writeHeaderToLog( SECTION + " "+ TITLE); 1.26 + 1.27 +// the following two tests are incorrect 1.28 +//new TestCase( SECTION, "(new String('') == new String('')) ", 1.29 +// true, (new String('') == new String(''))); 1.30 + 1.31 +//new TestCase( SECTION, "(new Boolean(true) == new Boolean(true)) ", 1.32 +// true, (new Boolean(true) == new Boolean(true))); 1.33 + 1.34 +new TestCase( SECTION, "(new String('x') == 'x') ", 1.35 + false, (new String('x') == 'x')); 1.36 + 1.37 +new TestCase( SECTION, "('x' == new String('x')) ", 1.38 + false, ('x' == new String('x'))); 1.39 + 1.40 + 1.41 +test(); 1.42 +