test262/test/suite/ch15/15.11/15.11.1/S15.11.1.1_A2_T1.js
2011-10-03 13:04:52 -07:00

21 lines
820 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* The [[Prototype]] property of the newly constructed object is set to the original Error prototype
* object, the one that is the initial value of Error.prototype (15.11.3.1)
*
* @path ch15/15.11/15.11.1/S15.11.1.1_A2_T1.js
* @description Checking prototype of the newly constructed Error object
*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
var err1=Error('msg1');
if(!Error.prototype.isPrototypeOf(err1)){
$ERROR('#1: var err1=Error(\'msg1\'); Error.prototype.isPrototypeOf(err1) return true. Actual: '+Error.prototype.isPrototypeOf(err1));
}
//
//////////////////////////////////////////////////////////////////////////////