blob: ad38ceb5982f173971a015d9935a7125891ad2cd [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 Object.prototype.hasOwnProperty.length property does not have the
attribute DontDelete
es5id: 15.2.4.5_A9
description: >
Checking if deleting the Object.prototype.hasOwnProperty.length
property fails
---*/
//CHECK#0
if (!(Object.prototype.hasOwnProperty.hasOwnProperty('length'))) {
$ERROR('#0: the Object.prototype.hasOwnProperty has length property');
}
//CHECK#1
if (!delete Object.prototype.hasOwnProperty.length) {
$ERROR('#1: The Object.prototype.hasOwnProperty.length property does not have the attributes DontDelete');
}
//CHECK#2
if (Object.prototype.hasOwnProperty.hasOwnProperty('length')) {
$ERROR('#2: The Object.prototype.hasOwnProperty.length property does not have the attributes DontDelete');
}