summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/function-code/10.4.3-1-55gs.js
blob: 340014719e6392bdfe06641b4876d92434b3c095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 10.4.3-1-55gs
description: >
    Strict - checking 'this' from a global scope (Literal getter
    includes strict directive prologue)
---*/

var o = { get foo() { "use strict"; return this; } }
if (o.foo!==o) {
    throw "'this' had incorrect value!";
}

reportCompare(0, 0);