aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js')
-rw-r--r--test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js b/test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js
index 67b689a96..3410037a7 100644
--- a/test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js
+++ b/test/suite/ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.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.
-/**
- * The length property of decodeURIComponent has the attribute ReadOnly
- *
- * @path ch15/15.1/15.1.3/15.1.3.2/S15.1.3.2_A5.3.js
- * @description Checking if varying the length property fails
- */
+/*---
+info: The length property of decodeURIComponent has the attribute ReadOnly
+description: Checking if varying the length property fails
+---*/
//CHECK#1
x = decodeURIComponent.length;
@@ -14,5 +12,3 @@ decodeURIComponent.length = Infinity;
if (decodeURIComponent.length !== x) {
$ERROR('#1: x = decodeURIComponent.length; decodeURIComponent.length = Infinity; decodeURIComponent.length === x. Actual: ' + (decodeURIComponent.length));
}
-
-