Chromium Code Reviews| Index: LayoutTests/fast/js/iterable-object.html |
| diff --git a/LayoutTests/fast/js/iterable-object.html b/LayoutTests/fast/js/iterable-object.html |
| index 70e481af7491b1f4fe2aaafb565767a8d754e52c..94663cbd18e4595af14486fa12d18d97a2f3a436 100644 |
| --- a/LayoutTests/fast/js/iterable-object.html |
| +++ b/LayoutTests/fast/js/iterable-object.html |
| @@ -28,6 +28,10 @@ for (var entry of internals.entries()) { |
| debug('entry = ' + entry); |
| } |
| +internals.forEach(function (value, key, object) { |
|
jsbell
2015/01/22 19:53:54
Can you add cases for:
* Calling forEach w/ a non
Jens Widell
2015/01/23 11:08:14
Done.
Also added cases for the callback function
|
| + debug(this + ', ' + value + ', ' + key + ', ' + object); |
| +}, 'thisArg'); |
| + |
| </script> |
| </body> |
| </html> |