summaryrefslogtreecommitdiff
path: root/test/language/statements/function/13.2-1-s.js
blob: ec7ae1bc8402a0a526c56ebed22988a475becc62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 13.2-1-s
description: >
    StrictMode -  Writing or reading from a property named 'caller' of
    function objects is allowed under both strict and normal modes.
includes: [runTestCase.js]
---*/

function testcase() {
        var foo = function () {
            this.caller = 12;
        }
        var obj = new foo();
        return obj.caller === 12;
    }
runTestCase(testcase);