blob: 90dfb50f27bc265dea65286df976e8d53c0a9e3d [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright (c) 2012 Ecma International. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5es5id: 10.4.3-1-39-s
6description: >
7 Strict Mode - checking 'this' (FunctionDeclaration defined within
8 a FunctionExpression with a strict directive prologue)
9flags: [noStrict]
10---*/
11
12var f1 = function () {
13 "use strict";
14 function f() {
15 return typeof this;
16 }
17 return (f()==="undefined") && ((typeof this)==="undefined");
18}
19
20assert(f1(), 'f1() !== true');