summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/no-date-value.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Date/prototype/no-date-value.js')
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/no-date-value.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Date/prototype/no-date-value.js b/js/src/tests/test262/built-ins/Date/prototype/no-date-value.js
new file mode 100644
index 0000000000..0ed5661d0a
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/no-date-value.js
@@ -0,0 +1,29 @@
+// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-properties-of-the-date-prototype-object
+description: >
+ The Date Prototype object does not have a [[DateValue]] internal slot.
+info: |
+ Properties of the Date Prototype Object
+
+ The Date prototype object:
+ [...]
+ * is not a Date instance and does not have a [[DateValue]] internal slot.
+
+ Date.prototype.getTime ( )
+
+ 1. Return ? thisTimeValue(this value).
+
+ The abstract operation thisTimeValue takes argument value.
+
+ 1. If Type(value) is Object and value has a [[DateValue]] internal slot, then
+ [...]
+ 2. Throw a TypeError exception.
+---*/
+
+assert.throws(TypeError, function() {
+ Date.prototype.getTime();
+});
+
+reportCompare(0, 0);