blob: 46f816518ef006010b6848515f806fd74a1c6a57 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
The Function prototype object is itself a Function object (its [[Class]]
is "Function")
es5id: 15.3.4_A1
description: Object.prototype.toString returns [object+[[Class]]+]
---*/
assert.sameValue(
Object.prototype.toString.call(Function.prototype),
"[object Function]",
'Object.prototype.toString.call(Function.prototype) must return "[object Function]"'
);