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 | // Copyright 2009 the Sputnik authors. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Since a function is an object, it might be set to [[Prototype]] property of a new created object through [[Construct]] property, |
michael@0 | 6 | * but [[call]] property must fail with TypeError error |
michael@0 | 7 | * |
michael@0 | 8 | * @path ch13/13.2/S13.2.2_A2.js |
michael@0 | 9 | * @description Trying to [[call]] this function |
michael@0 | 10 | */ |
michael@0 | 11 | |
michael@0 | 12 | var __PLANT="flower"; |
michael@0 | 13 | var __ROSE="rose"; |
michael@0 | 14 | |
michael@0 | 15 | function __PROTO(){}; |
michael@0 | 16 | |
michael@0 | 17 | try{ |
michael@0 | 18 | __PROTO.type=__PLANT; |
michael@0 | 19 | } |
michael@0 | 20 | catch(e){ |
michael@0 | 21 | $ERROR('#0: __PROTO.type=__PLANT does not lead to throwing exception') |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | function __FACTORY(){this.name=__ROSE}; |
michael@0 | 25 | |
michael@0 | 26 | __FACTORY.prototype=__PROTO; |
michael@0 | 27 | |
michael@0 | 28 | var __rose = new __FACTORY(); |
michael@0 | 29 | |
michael@0 | 30 | ////////////////////////////////////////////////////////////////////////////// |
michael@0 | 31 | //CHECK#1 |
michael@0 | 32 | try{ |
michael@0 | 33 | __rose(); |
michael@0 | 34 | $ERROR('#1: __rose() lead to throwing exception'); |
michael@0 | 35 | } catch(e){ |
michael@0 | 36 | if (!(e instanceof TypeError)) { |
michael@0 | 37 | $ERROR('#2: Exception Type is TypeError. Actual: exception ==='+e); |
michael@0 | 38 | } |
michael@0 | 39 | } |
michael@0 | 40 | // |
michael@0 | 41 | ////////////////////////////////////////////////////////////////////////////// |
michael@0 | 42 |