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_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking ReadOnly attribute
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
x = Date.prototype.getSeconds.length;
|
|
|
|
Date.prototype.getSeconds.length = 1;
|
|
|
|
if (Date.prototype.getSeconds.length !== x) {
|
|
|
|
$ERROR('#1: The Date.prototype.getSeconds.length has the attribute ReadOnly');
|
|
|
|
}
|