aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js')
-rw-r--r--test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js b/test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js
index 9b7ebad28..e690608e7 100644
--- a/test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js
+++ b/test/suite/ch15/15.3/15.3.5/S15.3.5.3_A1_T3.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.
-/**
- * Assume F is a Function object. When the [[HasInstance]] method of F is called with value V, the following steps are taken: i) If V is not an object, return false
- *
- * @path ch15/15.3/15.3.5/S15.3.5.3_A1_T3.js
- * @description V is boolean true
- */
+/*---
+info: >
+ Assume F is a Function object. When the [[HasInstance]] method of F is
+ called with value V, the following steps are taken: i) If V is not an
+ object, return false
+description: V is boolean true
+---*/
FACTORY = Function("name","this.name=name;");
@@ -14,4 +15,3 @@ FACTORY = Function("name","this.name=name;");
if ((true instanceof FACTORY)!==false) {
$ERROR('#1: Assume F is a Function object. When the [[HasInstance]] method of F is called with value V, the following steps are taken: i) If V is not an object, return false');
}
-