1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_2/Exceptions/exception-002.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 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: exception-002 1.12 + * ECMA Section: 1.13 + * Description: Tests for JavaScript Standard Exceptions 1.14 + * 1.15 + * Construct error. 1.16 + * 1.17 + * Author: christine@netscape.com 1.18 + * Date: 31 August 1998 1.19 + */ 1.20 +var SECTION = "exception-002"; 1.21 +var VERSION = "js1_4"; 1.22 +var TITLE = "Tests for JavaScript Standard Exceptions: ConstructError"; 1.23 + 1.24 +startTest(); 1.25 +writeHeaderToLog( SECTION + " "+ TITLE); 1.26 + 1.27 +Construct_1(); 1.28 + 1.29 +test(); 1.30 + 1.31 +function Construct_1() { 1.32 + result = "failed: no exception thrown"; 1.33 + exception = null; 1.34 + 1.35 + try { 1.36 + result = new Math(); 1.37 + } catch ( e ) { 1.38 + result = "passed: threw exception", 1.39 + exception = e.toString(); 1.40 + } finally { 1.41 + new TestCase( 1.42 + SECTION, 1.43 + "new Math() [ exception is " + exception +" ]", 1.44 + "passed: threw exception", 1.45 + result ); 1.46 + } 1.47 +} 1.48 +