1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_2/function/definition-1.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,43 @@ 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: definition-1.js 1.12 + Reference: http://scopus.mcom.com/bugsplat/show_bug.cgi?id=111284 1.13 + Description: Regression test for declaring functions. 1.14 + 1.15 + Author: christine@netscape.com 1.16 + Date: 15 June 1998 1.17 +*/ 1.18 + 1.19 +var SECTION = "function/definition-1.js"; 1.20 +var VERSION = "JS_12"; 1.21 +startTest(); 1.22 +var TITLE = "Regression test for 111284"; 1.23 + 1.24 +writeHeaderToLog( SECTION + " "+ TITLE); 1.25 + 1.26 +f1 = function() { return "passed!" } 1.27 + 1.28 + function f2() { f3 = function() { return "passed!" }; return f3(); } 1.29 + 1.30 +new TestCase( SECTION, 1.31 + 'f1 = function() { return "passed!" }; f1()', 1.32 + "passed!", 1.33 + f1() ); 1.34 + 1.35 +new TestCase( SECTION, 1.36 + 'function f2() { f3 = function { return "passed!" }; return f3() }; f2()', 1.37 + "passed!", 1.38 + f2() ); 1.39 + 1.40 +new TestCase( SECTION, 1.41 + 'f3()', 1.42 + "passed!", 1.43 + f3() ); 1.44 + 1.45 +test(); 1.46 +