blob: 5c4fa267cf20f0d42c050d6fb70c092a6e8501cf [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_T1
description: Not any arguments at apply function
---*/
Function("this.field=\"strawberry\"").apply();
//CHECK#1
if (this["field"] !== "strawberry") {
$ERROR('#1: If thisArg is null or undefined, the called function is passed the global object as the this value');
}