summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/setPrototypeOf-with-different-values.js
blob: 7574602a4c55741637782ead17696ef330026183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// 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-immutable-prototype-exotic-objects-setprototypeof-v
description: >
  Object.prototype's [[SetPrototypeOf]] returns false if value is not the same
info: |
  9.4.7.1 [[SetPrototypeOf]] (V)

  ...
  2. Let current be the value of the [[Prototype]] internal slot of O.
  3. If SameValue(V, current), return true.
  4. Return false.

  19.1.3 Properties of the Object Prototype Object

  The value of the [[Prototype]] internal slot of the Object prototype object is
  null and the initial value of the [[Extensible]] internal slot is true.
features: [Reflect.setPrototypeOf]
---*/

var ObjProto = Object.prototype;

assert.throws(TypeError, function() {
  Object.setPrototypeOf(ObjProto, {});
}, "Object.setPrototypeOf(ObjProto, {}) throws a TypeError");

assert.throws(TypeError, function() {
  Object.setPrototypeOf(ObjProto, Array.prototype);
}, "Object.setPrototypeOf(ObjProto, Array.prototype) throws a TypeError");

assert.throws(TypeError, function() {
  Object.setPrototypeOf(ObjProto, ObjProto);
}, "Object.setPrototypeOf(ObjProto, ObjProto) throws a TypeError");

assert.sameValue(
  Reflect.setPrototypeOf(ObjProto, {}),
  false,
  "Reflect.setPrototypeOf(ObjProto, {}) returns false"
);

assert.sameValue(
  Reflect.setPrototypeOf(ObjProto, Array.prototype),
  false,
  "Reflect.setPrototypeOf(ObjProto, Array.prototype) returns false"
);

assert.sameValue(
  Reflect.setPrototypeOf(ObjProto, ObjProto),
  false,
  "Reflect.setPrototypeOf(ObjProto, ObjProto) returns false"
);

reportCompare(0, 0);