blob: efa6e9386333659068a8268d250a9b40e7a5b31b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The Date constructor has the property "parse"
esid: sec-date-constructor
description: Checking existence of the property "parse"
---*/
assert(Date.hasOwnProperty("parse"), 'Date.hasOwnProperty("parse") must return true');
reportCompare(0, 0);
|