2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
The Date.prototype.getSeconds property "length" has { ReadOnly,
|
|
|
|
DontDelete, DontEnum } attributes
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.9.5.22_A3_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking DontDelete attribute
|
|
|
|
includes: [$FAIL.js]
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
if (delete Date.prototype.getSeconds.length !== false) {
|
|
|
|
$ERROR('#1: The Date.prototype.getSeconds.length property has the attributes DontDelete');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Date.prototype.getSeconds.hasOwnProperty('length')) {
|
|
|
|
$FAIL('#2: The Date.prototype.getSeconds.length property has the attributes DontDelete');
|
|
|
|
}
|