blob: 7a62551a31cb3c003f9a331e00dc937810ba9532 [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: The valueOf method returns its "this" value
es5id: 15.2.4.4_A1_T3
description: "\"this\" value is a string"
---*/
//CHECK#1
if (typeof Object.prototype.valueOf !== "function") {
$ERROR('#1: valueOf method defined');
}
var obj = new Object("greenfield");
//CHECK#2
if (typeof obj.valueOf !== "function") {
$ERROR('#2: valueOf method accessed');
}
//CHECK#3
if (obj.valueOf() !== "greenfield") {
$ERROR('#3: The valueOf method returns its this value');
}