summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js')
-rw-r--r--js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js b/js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js
new file mode 100644
index 0000000000..056b3ab72d
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Set/properties-of-the-set-prototype-object.js
@@ -0,0 +1,19 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-properties-of-the-set-prototype-object
+description: >
+ The Set prototype object is the intrinsic object %SetPrototype%.
+ The value of the [[Prototype]] internal slot of the Set prototype
+ object is the intrinsic object %ObjectPrototype% (19.1.3). The Set
+ prototype object is an ordinary object. It does not have a
+ [[SetData]] internal slot.
+---*/
+
+assert.sameValue(
+ Object.getPrototypeOf(Set.prototype),
+ Object.prototype,
+ "`Object.getPrototypeOf(Set.prototype)` returns `Object.prototype`"
+);
+
+reportCompare(0, 0);