mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
16 lines
440 B
JavaScript
16 lines
440 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Boolean.prototype has the attribute DontDelete
|
|
*
|
|
* @path ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A3.js
|
|
* @description Checking if deleting the Boolean.prototype property fails
|
|
*/
|
|
|
|
// CHECK#1
|
|
if (delete Boolean.prototype !== false) {
|
|
$ERROR('#1: Boolean.prototype has the attribute DontDelete');
|
|
}
|
|
|