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) {
// Because of an issue in the module system of slimerjs (security membranes?)
// constructor is undefined.
// let's use an other algorithm
return mergeObjectsInSlimerjs(origin, add);
return mergeObjectsInSlimerjs(origin, add, options);
}
for (var p in add) {
......