blob: d83214fa7618ac0851c2039febe8af594f0b4f7b [file] [log] [blame]
// 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-48gs
description: >
Strict - checking 'this' from a global scope (FunctionDeclaration
with a strict directive prologue defined within a
FunctionExpression)
flags: [noStrict]
---*/
var global = this;
var f1 = function () {
function f() {
"use strict";
return typeof this;
}
return (f()==="undefined") && (this===global);
}
if (! f1()) {
throw "'this' had incorrect value!";
}