evaluation-this-value-global.js (461B)
1 // |reftest| async 2 // Copyright 2016 Microsoft, Inc. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 author: Brian Terlson <brian.terlson@microsoft.com> 7 esid: pending 8 description: > 9 The this value is set to the global object when not passed in sloppy mode. 10 flags: [noStrict, async] 11 includes: [asyncHelpers.js] 12 ---*/ 13 14 var glob = this; 15 async function foo() { 16 assert.sameValue(this, glob); 17 } 18 19 asyncTest(foo);