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

/*---
info: The Date.prototype has the property "getUTCMilliseconds"
esid: sec-properties-of-the-date-prototype-object
description: The Date.prototype has the property "getUTCMilliseconds"
---*/
assert.sameValue(
  Date.prototype.hasOwnProperty("getUTCMilliseconds"),
  true,
  'Date.prototype.hasOwnProperty("getUTCMilliseconds") must return true'
);

reportCompare(0, 0);