blob: b5ac79c7a821d95646f3e02fb1dabcedcda589d7 [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 property "toLocaleTimeString" has { DontEnum }
attributes
esid: sec-date.prototype.tolocaletimestring
description: Checking absence of ReadOnly attribute
---*/
var x = Date.prototype.toLocaleTimeString;
if (x === 1)
Date.prototype.toLocaleTimeString = 2;
else
Date.prototype.toLocaleTimeString = 1;
if (Date.prototype.toLocaleTimeString === x) {
$ERROR('#1: The Date.prototype.toLocaleTimeString has not the attribute ReadOnly');
}