test262/test/suite/ch15/15.11/15.11.3/S15.11.3.1_A3_T1.js
2011-10-03 13:04:52 -07:00

42 lines
1.3 KiB
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Error.prototype property has the attributes {ReadOnly}
*
* @path ch15/15.11/15.11.3/S15.11.3.1_A3_T1.js
* @description Checking if varying the Error.prototype property fails
*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (!(Error.hasOwnProperty('prototype'))) {
$ERROR('#1: Error.hasOwnProperty(\'prototype\') return true. Actual: '+Error.hasOwnProperty('prototype'));
}
//
//////////////////////////////////////////////////////////////////////////////
__obj = Error.prototype;
Error.prototype = function(){return "shifted";};
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (Error.prototype !== __obj) {
$ERROR('#2: __obj = Error.prototype; Error.prototype = function(){return "shifted";}; Error.prototype === __obj. Actual: '+Error.prototype );
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
try {
Error.prototype();
$ERROR('#3: "Error.prototype()" lead to throwing exception');
} catch (e) {
;
}
//
//////////////////////////////////////////////////////////////////////////////