summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/toString/15.2.4.2-2-1.js
blob: ee6120a79feb0cea4e98b46466f5d7581f9ca2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.4.2-2-1
description: >
    Object.prototype.toString - '[object Null]' will be returned when
    'this' value is null
---*/

assert.sameValue(Object.prototype.toString.call(null), "[object Null]", 'Object.prototype.toString.call(null)');