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