Explorar o código

Checks for Object.prototypeOf.

Herby Vojčík %!s(int64=6) %!d(string=hai) anos
pai
achega
28bda92660
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      support/kernel-checks.js

+ 7 - 0
support/kernel-checks.js

@@ -15,6 +15,13 @@ define(function () {
     assert(function () {
         return !("hasOwnProperty" in Object.create(null));
     });
+    assert(function () {
+        return Object.getPrototypeOf(Object.create(null)) === null;
+    });
+    assert(function () {
+        var p = {};
+        return Object.getPrototypeOf(Object.create(p)) === p;
+    });
     assert(function () {
         return new Function("return this")().Object === Object;
     });