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.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * Calling a function as a constructor is possible as long as this.any_Function is declared
6 *
7 * @path ch13/13.2/S13.2.2_A10.js
8 * @description Calling a function as a constructor after it has been declared
9 */
11 function FACTORY(){
12 this.id = 0;
14 this.func = function (){
15 return 5;
16 }
18 this.id = this.func();
20 }
21 //////////////////////////////////////////////////////////////////////////////
22 //CHECK#1
23 try {
24 var obj = new FACTORY();
25 } catch (e) {
26 $ERROR('#1: var obj = new FACTORY() does not lead to throwing exception. Actual: Exception is '+e);
27 }
28 //
29 //////////////////////////////////////////////////////////////////////////////
31 //////////////////////////////////////////////////////////////////////////////
32 //CHECK#2
33 if (obj.id !== 5) {
34 $ERROR('#2: obj.id === 5. Actual: obj.id ==='+obj.id);
35 }
36 //
37 //////////////////////////////////////////////////////////////////////////////