Commit a1fe0e9a a1fe0e9af9862a6865bf9bc38c56852f3d656cc2 by Laurent Jouanneau

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+...
1 parent efefe2b0
...@@ -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) {
......