blob: 13c21f3ed07db8fe09fa6b831d70711c598670ab [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: Function.prototype.apply has not prototype property
es5id: 15.3.4.3_A12
description: >
Checking if obtaining the prototype property of
Function.prototype.apply fails
---*/
assert.sameValue(
Function.prototype.apply.prototype,
undefined,
'The value of Function.prototype.apply.prototype is expected to equal undefined'
);