summaryrefslogtreecommitdiff
path: root/test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js')
-rw-r--r--test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js b/test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js
deleted file mode 100644
index b0ac0e0f5..000000000
--- a/test/suite/sputnik/Implementation_Diagnostics/S8.4_D2.4.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S8.4_D2.4;
- * @section: 8.4, 15.5, 7.8.4;
- * @assertion: Engines implements array like access to string elemenths,
- * If index of elementh is less than 0 an empty string returns;
-*/
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#
-str='asdfghjkl';
-
-var char__ =str[-1];
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (char__!== '') {
- $ERROR('#1: If index of elementh is less than 0 an emty string returns');
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-var __char =str[-5];
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (__char!== '') {
- $ERROR('#2: If index of elementh is less than 0 an emty string returns');
-}
-//
-//////////////////////////////////////////////////////////////////////////////