aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js')
-rw-r--r--test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js b/test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js
index be28f3197..675cd4c4d 100644
--- a/test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js
+++ b/test/suite/ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js
@@ -1,12 +1,13 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * The RegExp instance ignoreCase property has the attribute DontEnum
- *
- * @path ch15/15.10/15.10.7/15.10.7.3/S15.10.7.3_A8.js
- * @description Checking if enumerating the ignoreCase property of RegExp instance fails
- */
+/*---
+info: The RegExp instance ignoreCase property has the attribute DontEnum
+description: >
+ Checking if enumerating the ignoreCase property of RegExp instance
+ fails
+includes: [$FAIL.js]
+---*/
__re = new RegExp("[|||||||]","");
@@ -28,5 +29,4 @@ for (p in __re){
if (count !== 0) {
$ERROR('#2: count = 0; __re = new RegExp("[|||||||]",""); for (p in __re){ if (p==="ignoreCase") count++; } count === 0. Actual: ' + (count));
-}
-
+}