1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_3/regress/switch-001.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 + 1.10 +/** 1.11 + File Name: switch-001.js 1.12 + Section: 1.13 + Description: 1.14 + 1.15 + http://scopus.mcom.com/bugsplat/show_bug.cgi?id=315767 1.16 + 1.17 + Verify that switches do not use strict equality in 1.18 + versions of JavaScript < 1.4. It's now been decided that 1.19 + we won't put in version switches, so all switches will 1.20 + be ECMA. 1.21 + 1.22 + Author: christine@netscape.com 1.23 + Date: 12 november 1997 1.24 +*/ 1.25 +var SECTION = "switch-001"; 1.26 +var VERSION = "JS1_3"; 1.27 +var TITLE = "switch-001"; 1.28 +var BUGNUMBER="315767"; 1.29 + 1.30 +startTest(); 1.31 +writeHeaderToLog( SECTION + " "+ TITLE); 1.32 + 1.33 +result = "fail: did not enter switch"; 1.34 + 1.35 +switch (true) { 1.36 +case 1: 1.37 + result = "fail: version 130 should force strict equality"; 1.38 + break; 1.39 +case true: 1.40 + result = "pass"; 1.41 + break; 1.42 +default: 1.43 + result = "fail: evaluated default statement"; 1.44 +} 1.45 + 1.46 +new TestCase( 1.47 + SECTION, 1.48 + "switch / case should use strict equality in version of JS < 1.4", 1.49 + "pass", 1.50 + result ); 1.51 + 1.52 +test(); 1.53 +