1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_2/Exceptions/exception-009.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,53 @@ 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-009 1.12 + * ECMA Section: 1.13 + * Description: Tests for JavaScript Standard Exceptions 1.14 + * 1.15 + * Regression test for nested try blocks. 1.16 + * 1.17 + * http://scopus.mcom.com/bugsplat/show_bug.cgi?id=312964 1.18 + * 1.19 + * Author: christine@netscape.com 1.20 + * Date: 31 August 1998 1.21 + */ 1.22 +var SECTION = "exception-009"; 1.23 +var VERSION = "JS1_4"; 1.24 +var TITLE = "Tests for JavaScript Standard Exceptions: SyntaxError"; 1.25 +var BUGNUMBER= "312964"; 1.26 + 1.27 +startTest(); 1.28 +writeHeaderToLog( SECTION + " "+ TITLE); 1.29 + 1.30 +try { 1.31 + expect = "passed: no exception thrown"; 1.32 + result = expect; 1.33 + Nested_1(); 1.34 +} catch ( e ) { 1.35 + result = "failed: threw " + e; 1.36 +} finally { 1.37 + new TestCase( 1.38 + SECTION, 1.39 + "nested try", 1.40 + expect, 1.41 + result ); 1.42 +} 1.43 + 1.44 + 1.45 +test(); 1.46 + 1.47 +function Nested_1() { 1.48 + try { 1.49 + try { 1.50 + } catch (a) { 1.51 + } finally { 1.52 + } 1.53 + } catch (b) { 1.54 + } finally { 1.55 + } 1.56 +}