summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js')
-rw-r--r--js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js b/js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js
new file mode 100644
index 0000000000..26060a95d8
--- /dev/null
+++ b/js/src/tests/test262/language/statements/for/12.6.3_2-3-a-ii-15.js
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ Refer 12.6.3;
+ The production
+ IterationStatement : for ( var VariableDeclarationListNoIn ; Expressionopt ; Expressionopt ) Statement
+ is evaluated as follows:
+es5id: 12.6.3_2-3-a-ii-15
+description: >
+ The for Statement - (normal, V, empty) will be returned when first
+ Expression is a number (value is +0)
+---*/
+
+ var count = 0;
+ for (var i = 0; +0;) {
+ count++;
+ }
+
+assert.sameValue(count, 0, 'count');
+
+reportCompare(0, 0);