blob: 48acd137dc77f5612c882270c0c04215c7a4f422 [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 not null(defined) the called function is passed
ToObject(thisArg) as the this value
es5id: 15.3.4.3_A5_T6
description: thisArg is new String()
---*/
var obj = new String("soap");
(function() {
this.touched = true;
}).apply(obj);
assert(obj.touched, 'The value of obj.touched is expected to be true');