// 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 "toLocaleTimeString" has { DontEnum } attributes * * @path ch15/15.9/15.9.5/15.9.5.7/S15.9.5.7_A1_T1.js * @description Checking absence of ReadOnly attribute */ 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'); }