blob: 8ee7aa797aecc8ef697a4ba8aa60eb580799f3e1 [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 Date.prototype.getUTCSeconds property "length" has { ReadOnly, !
DontDelete, DontEnum } attributes
esid: sec-date.prototype.getutcseconds
es5id: 15.9.5.23_A3_T2
description: Checking DontDelete attribute
---*/
if (delete Date.prototype.getUTCSeconds.length !== true) {
$ERROR('#1: The Date.prototype.getUTCSeconds.length property does not have the attributes DontDelete');
}
if (Date.prototype.getUTCSeconds.hasOwnProperty('length')) {
$ERROR('#2: The Date.prototype.getUTCSeconds.length property does not have the attributes DontDelete');
}