summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js')
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js b/js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js
new file mode 100644
index 0000000000..02ce03a839
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/toString/non-date-receiver.js
@@ -0,0 +1,22 @@
+// Copyright (C) 2017 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.prototype.tostring
+description: Date.prototype.toString throws a TypeError on non-Date receivers
+info: |
+ Date.prototype.toString ( )
+
+ 1. Let tv be ? thisTimeValue(this value).
+---*/
+
+assert.throws(TypeError, () => Date.prototype.toString());
+assert.throws(TypeError, () => Date.prototype.toString.call(undefined));
+assert.throws(TypeError, () => Date.prototype.toString.call(0));
+assert.throws(TypeError, () => Date.prototype.toString.call({}));
+assert.throws(TypeError, () =>
+ Date.prototype.toString.call("Tue Mar 21 2017 12:16:43 GMT-0400 (EDT)"));
+assert.throws(TypeError, () =>
+ Date.prototype.toString.call(1490113011493));
+
+reportCompare(0, 0);