js/src/tests/js1_3/Script/switch-001.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_3/Script/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
    1.19 +
    1.20 +   Author:             christine@netscape.com
    1.21 +   Date:               12 november 1997
    1.22 +*/
    1.23 +var SECTION = "switch-001";
    1.24 +var VERSION = "JS1_3";
    1.25 +var TITLE   = "switch-001";
    1.26 +var BUGNUMBER="315767";
    1.27 +
    1.28 +startTest();
    1.29 +writeHeaderToLog( SECTION + " "+ TITLE);
    1.30 +
    1.31 +result = "fail:  did not enter switch";
    1.32 +
    1.33 +switch (true) {
    1.34 +case 1:
    1.35 +  result = "fail: for backwards compatibility, version 130 use strict equality";
    1.36 +  break;
    1.37 +case true:
    1.38 +  result = "pass";
    1.39 +  break;
    1.40 +default:
    1.41 +  result = "fail: evaluated default statement";
    1.42 +}
    1.43 +
    1.44 +new TestCase(
    1.45 +  SECTION,
    1.46 +  "switch / case should use strict equality in version of JS < 1.4",
    1.47 +  "pass",
    1.48 +  result );
    1.49 +
    1.50 +
    1.51 +
    1.52 +test();
    1.53 +

mercurial