blob: 5cc9e4750794924185411c974adef28d6a38c8f7 [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 length property of the hasOwnProperty method is 1
es5id: 15.2.4.5_A11
description: Checking the Object.prototype.hasOwnProperty.length
---*/
//CHECK#1
if (!(Object.prototype.hasOwnProperty.hasOwnProperty("length"))) {
$ERROR('#1: The length property of the toObject method is 1');
}
//CHECK#2
if (Object.prototype.hasOwnProperty.length !== 1) {
$ERROR('#2: The length property of the toObject method is 1');
}