Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | File Name: 15.3.1.1-3.js |
michael@0 | 9 | ECMA Section: 15.3.1.1 The Function Constructor Called as a Function |
michael@0 | 10 | |
michael@0 | 11 | new Function(p1, p2, ..., pn, body ) |
michael@0 | 12 | |
michael@0 | 13 | Description: The last argument specifies the body (executable code) |
michael@0 | 14 | of a function; any preceding arguments sepcify formal |
michael@0 | 15 | parameters. |
michael@0 | 16 | |
michael@0 | 17 | See the text for description of this section. |
michael@0 | 18 | |
michael@0 | 19 | This test examples from the specification. |
michael@0 | 20 | |
michael@0 | 21 | Author: christine@netscape.com |
michael@0 | 22 | Date: 28 october 1997 |
michael@0 | 23 | |
michael@0 | 24 | */ |
michael@0 | 25 | var SECTION = "15.3.1.1-3"; |
michael@0 | 26 | var VERSION = "ECMA_1"; |
michael@0 | 27 | startTest(); |
michael@0 | 28 | var TITLE = "The Function Constructor Called as a Function"; |
michael@0 | 29 | |
michael@0 | 30 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 31 | |
michael@0 | 32 | var args = ""; |
michael@0 | 33 | |
michael@0 | 34 | for ( var i = 0; i < 2000; i++ ) { |
michael@0 | 35 | args += "arg"+i; |
michael@0 | 36 | if ( i != 1999 ) { |
michael@0 | 37 | args += ","; |
michael@0 | 38 | } |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | var s = ""; |
michael@0 | 42 | |
michael@0 | 43 | for ( var i = 0; i < 2000; i++ ) { |
michael@0 | 44 | s += ".0005"; |
michael@0 | 45 | if ( i != 1999 ) { |
michael@0 | 46 | s += ","; |
michael@0 | 47 | } |
michael@0 | 48 | } |
michael@0 | 49 | |
michael@0 | 50 | MyFunc = Function( args, "var r=0; for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; else r += eval('arg'+i); }; return r"); |
michael@0 | 51 | MyObject = Function( args, "for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; eval('this.arg'+i +'=arg'+i); };"); |
michael@0 | 52 | |
michael@0 | 53 | var MY_OB = eval( "MyFunc("+ s +")" ); |
michael@0 | 54 | |
michael@0 | 55 | new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length ); |
michael@0 | 56 | new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, MY_OB ); |
michael@0 | 57 | new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") ); |
michael@0 | 58 | |
michael@0 | 59 | new TestCase( SECTION, "MyObject.length", 2000, MyObject.length ); |
michael@0 | 60 | |
michael@0 | 61 | new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); |
michael@0 | 62 | new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ); |
michael@0 | 63 | new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)") ); |
michael@0 | 64 | |
michael@0 | 65 | test(); |