Home | History | Annotate | Download | only in ExecutionContexts
      1 /* The contents of this file are subject to the Netscape Public
      2  * License Version 1.1 (the "License"); you may not use this file
      3  * except in compliance with the License. You may obtain a copy of
      4  * the License at http://www.mozilla.org/NPL/
      5  *
      6  * Software distributed under the License is distributed on an "AS
      7  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
      8  * implied. See the License for the specific language governing
      9  * rights and limitations under the License.
     10  *
     11  * The Original Code is Mozilla Communicator client code, released March
     12  * 31, 1998.
     13  *
     14  * The Initial Developer of the Original Code is Netscape Communications
     15  * Corporation. Portions created by Netscape are
     16  * Copyright (C) 1998 Netscape Communications Corporation. All
     17  * Rights Reserved.
     18  *
     19  * Contributor(s):
     20  *
     21  */
     22 /**
     23     File Name:          10.2.3-2.js
     24     ECMA Section:       10.2.3 Function and Anonymous Code
     25     Description:
     26 
     27     The scope chain is initialized to contain the activation object followed
     28     by the global object. Variable instantiation is performed using the
     29     activation by the global object. Variable instantiation is performed using
     30     the activation object as the variable object and using property attributes
     31     { DontDelete }. The caller provides the this value. If the this value
     32     provided by the caller is not an object (including the case where it is
     33     null), then the this value is the global object.
     34 
     35     Author:             christine (at) netscape.com
     36     Date:               12 november 1997
     37 */
     38 
     39     var SECTION = "10.2.3-2";
     40     var VERSION = "ECMA_1";
     41     startTest();
     42     var TITLE   = "Function and Anonymous Code";
     43 
     44     writeHeaderToLog( SECTION + " "+ TITLE);
     45 
     46     var testcases = new Array();
     47 
     48     var o = new MyObject("hello")
     49 
     50     testcases[tc++] = new TestCase( SECTION,
     51                                     "MyFunction(\"PASSED!\")",
     52                                     "PASSED!",
     53                                     MyFunction("PASSED!") );
     54 
     55     var o = MyFunction();
     56 
     57     testcases[tc++] = new TestCase( SECTION,
     58                                     "MyOtherFunction(true);",
     59                                     false,
     60                                     MyOtherFunction(true) );
     61 
     62     test();
     63 
     64 function test() {
     65     for ( tc=0; tc < testcases.length; tc++ ) {
     66         testcases[tc].passed = writeTestCaseResult(
     67                             testcases[tc].expect,
     68                             testcases[tc].actual,
     69                             testcases[tc].description +" = "+
     70                             testcases[tc].actual );
     71 
     72         testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
     73     }
     74     stopTest();
     75     return ( testcases );
     76 }
     77 
     78 function MyFunction( value ) {
     79     var x = value;
     80     delete x;
     81     return x;
     82 }
     83 function MyOtherFunction(value) {
     84     var x = value;
     85     return delete x;
     86 }
     87 function MyObject( value ) {
     88  this.THIS = this;
     89 }
     90