blob: cc810add62230edb1b4e59034e3afe5406c72d9e (
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 "prototype"
esid: sec-date-constructor
description: Checking existence of the property "prototype"
---*/
assert(Date.hasOwnProperty("prototype"), 'Date.hasOwnProperty("prototype") must return true');
reportCompare(0, 0);
|