utils.mergeObjects: an argument is missing in a function call
When calling the gecko version of mergeObjects, options were missing. So a test about keepReferences failed with SlimerJS & gecko25+...
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -672,7 +672,7 @@ function mergeObjects(origin, add, opts) { | ... | @@ -672,7 +672,7 @@ function mergeObjects(origin, add, opts) { |
672 | // Because of an issue in the module system of slimerjs (security membranes?) | 672 | // Because of an issue in the module system of slimerjs (security membranes?) |
673 | // constructor is undefined. | 673 | // constructor is undefined. |
674 | // let's use an other algorithm | 674 | // let's use an other algorithm |
675 | return mergeObjectsInSlimerjs(origin, add); | 675 | return mergeObjectsInSlimerjs(origin, add, options); |
676 | } | 676 | } |
677 | 677 | ||
678 | for (var p in add) { | 678 | for (var p in add) { | ... | ... |
-
Please register or sign in to post a comment