blob: 3bddd5c775e806b94db30296990fa39a7a989b17 [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 initial value of Function.prototype.constructor is the built-in
Function constructor
es5id: 15.3.4.1_A1_T1
description: Checking Function.prototype.constructor
---*/
assert.sameValue(
Function.prototype.constructor,
Function,
'The value of Function.prototype.constructor is expected to equal the value of Function'
);