~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/10.2.3-1.js

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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-1.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@netscape.com
 
36
    Date:               12 november 1997
 
37
*/
 
38
 
 
39
    var SECTION = "10.2.3-1";
 
40
    var VERSION = "ECMA_1";
 
41
    startTest();
 
42
    var TITLE   = "Eval 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
                                    "var o = new MyObject('hello'); o.THIS == x",
 
52
                                    true,
 
53
                                    o.THIS == o );
 
54
 
 
55
    var o = MyFunction();
 
56
 
 
57
    testcases[tc++] = new TestCase( SECTION,
 
58
                                    "var o = MyFunction(); o == this",
 
59
                                    true,
 
60
                                    o == this );
 
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
    return this;
 
80
}
 
81
function MyObject( value ) {
 
82
 this.THIS = this;
 
83
}