summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js')
-rw-r--r--test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js b/test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js
deleted file mode 100644
index 798ebcc6c..000000000
--- a/test/built-ins/Object/prototype/toString/S15.2.4.2_A9.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-info: |
- The Object.prototype.toString.length property does not have the attribute
- DontDelete
-es5id: 15.2.4.2_A9
-description: >
- Checknig if deleting of the Object.prototype.toString.length
- property fails
----*/
-
-//CHECK#0
-if (!(Object.prototype.toString.hasOwnProperty('length'))) {
- $ERROR('#0: the Object.prototype.toString has length property');
-}
-
-//CHECK#1
-if (!delete Object.prototype.toString.length) {
- $ERROR('#1: The Object.prototype.toString.length property does not have the attributes DontDelete');
-}
-
-//CHECK#2
-if (Object.prototype.toString.hasOwnProperty('length')) {
- $ERROR('#2: The Object.prototype.toString.length property does not have the attributes DontDelete');
-}