mirror of
https://github.com/tc39/test262.git
synced 2025-09-03 08:18:29 +02:00
21 lines
551 B
JavaScript
21 lines
551 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Date.prototype property "setHours" has { DontEnum } attributes
|
|
*
|
|
* @path ch15/15.9/15.9.5/15.9.5.34/S15.9.5.34_A1_T1.js
|
|
* @description Checking absence of ReadOnly attribute
|
|
*/
|
|
|
|
x = Date.prototype.setHours;
|
|
if(x === 1)
|
|
Date.prototype.setHours = 2;
|
|
else
|
|
Date.prototype.setHours = 1;
|
|
if (Date.prototype.setHours === x) {
|
|
$ERROR('#1: The Date.prototype.setHours has not the attribute ReadOnly');
|
|
}
|
|
|
|
|