summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js')
-rw-r--r--test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js
new file mode 100644
index 000000000..85d941b57
--- /dev/null
+++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js
@@ -0,0 +1,16 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The "length" property of the "toTimeString" is 0
+es5id: 15.9.5.4_A2_T1
+description: The "length" property of the "toTimeString" is 0
+---*/
+
+if(Date.prototype.toTimeString.hasOwnProperty("length") !== true){
+ $ERROR('#1: The toTimeString has a "length" property');
+}
+
+if(Date.prototype.toTimeString.length !== 0){
+ $ERROR('#2: The "length" property of the toTimeString is 0');
+}