blob: 9900191fbc90e8f5b25432f819f8d7f32d403240 [file] [log] [blame]
// 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);