diff options
Diffstat (limited to 'js/src/tests/non262/Iterator/constructor.js')
-rw-r--r-- | js/src/tests/non262/Iterator/constructor.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/tests/non262/Iterator/constructor.js b/js/src/tests/non262/Iterator/constructor.js new file mode 100644 index 0000000000..56d8271e82 --- /dev/null +++ b/js/src/tests/non262/Iterator/constructor.js @@ -0,0 +1,9 @@ +// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally +/*--- + The Iterator constructor is a built-in function. +---*/ + +assertEq(typeof Iterator, 'function'); + +if (typeof reportCompare === 'function') + reportCompare(0, 0); |