summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/parse/S15.9.4.2_A1_T1.js
blob: eb110ddee36f6c914350805a610f01337ecf0636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: The Date property "parse" has { DontEnum } attributes
esid: sec-date.parse
description: Checking absence of ReadOnly attribute
---*/

var x = Date.parse;
if (x === 1)
  Date.parse = 2;
else
  Date.parse = 1;
if (Date.parse === x) {
  $ERROR('#1: The Date.parse has not the attribute ReadOnly');
}

reportCompare(0, 0);