blob: 7b212a390d6739984558d23677c248ee351732d9 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
If thisArg is null or undefined, the called function is passed the global
object as the this value
es5id: 15.3.4.3_A3_T4
description: Argument at apply function is undefined
---*/
Function("this.field=\"oil\"").apply(undefined);
//CHECK#1
if (this["field"] !== "oil") {
$ERROR('#1: If thisArg is null or undefined, the called function is passed the global object as the this value');
}