summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/parse/S15.9.4.2_A1_T2.js
blob: c0991c97d420942f7852a8ff20288f3f115b5d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 DontDelete attribute
---*/
assert.notSameValue(delete Date.parse, false, 'The value of delete Date.parse is not false');
assert(!Date.hasOwnProperty('parse'), 'The value of !Date.hasOwnProperty(\'parse\') is expected to be true');

// TODO: Convert to verifyProperty() format.

reportCompare(0, 0);