aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js')
-rw-r--r--test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js b/test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js
index f1bd6b63f..8e5cdb4b8 100644
--- a/test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js
+++ b/test/suite/ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js
@@ -1,12 +1,10 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Inside a CharacterClass, \b means the backspace character
- *
- * @path ch15/15.10/15.10.2/15.10.2.13/S15.10.2.13_A3_T2.js
- * @description Execute /c[\b]{3}d/.exec("abc\b\b\bdef") and check results
- */
+/*---
+info: Inside a CharacterClass, \b means the backspace character
+description: Execute /c[\b]{3}d/.exec("abc\b\b\bdef") and check results
+---*/
__executed = /c[\b]{3}d/.exec("abc\b\b\bdef");
@@ -35,5 +33,3 @@ for(var index=0; index<__expected.length; index++) {
$ERROR('#4: __executed = /c[\\b]{3}d/.exec("abc\\b\\b\\bdef"); __executed[' + index + '] === ' + __expected[index] + '. Actual: ' + __executed[index]);
}
}
-
-