summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js')
-rw-r--r--test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js31
1 files changed, 21 insertions, 10 deletions
diff --git a/test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js b/test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js
index 351daa7f7..b111b08e5 100644
--- a/test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js
+++ b/test/built-ins/String/prototype/slice/S15.5.4.13_A1_T12.js
@@ -11,19 +11,30 @@ description: >
return exception
---*/
-var __obj = {valueOf:function(){return {};}, toString:function(){throw "instart";}};
-var __obj2 = {valueOf:function(){throw "inend";}};
+var __obj = {
+ valueOf: function() {
+ return {};
+ },
+ toString: function() {
+ throw "instart";
+ }
+};
+var __obj2 = {
+ valueOf: function() {
+ throw "inend";
+ }
+};
var __str = new String("ABB\u0041BABAB");
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
- try {
- var x = __str.slice(__obj, __obj2);
- $ERROR('#1: "var x = __str.slice(__obj,__obj2)" lead to throwing exception');
- } catch (e) {
- if (e!=="instart") {
- $ERROR('#1.1: Exception === "instart". Actual: '+e);
- }
- }
+try {
+ var x = __str.slice(__obj, __obj2);
+ $ERROR('#1: "var x = __str.slice(__obj,__obj2)" lead to throwing exception');
+} catch (e) {
+ if (e !== "instart") {
+ $ERROR('#1.1: Exception === "instart". Actual: ' + e);
+ }
+}
//
//////////////////////////////////////////////////////////////////////////////