summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js')
-rw-r--r--js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js b/js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js
new file mode 100644
index 0000000000..27e9f98edd
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Date/prototype/toGMTString/value.js
@@ -0,0 +1,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);