summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js
blob: 27e9f98edd4a5c315b83b64c045dea9b1f3085cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.togmtstring
es6id: B.2.4.3
es5id: B.2.6
description: Value of `Date.prototype.toGMTString`
info: |
    The function object that is the initial value of Date.prototype.toGMTString
    is the same function object that is the initial value of
    Date.prototype.toUTCString.
---*/

assert.sameValue(Date.prototype.toGMTString, Date.prototype.toUTCString);

reportCompare(0, 0);