diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 25a78ebabe02..c2e6ee9e09c8 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -500,7 +500,7 @@ function $RootScopeProvider(){ function $watchCollectionWatch() { newValue = objGetter(self); - var newLength, key; + var newLength, key, bothNaN; if (!isObject(newValue)) { // if primitive if (oldValue !== newValue) { @@ -524,7 +524,7 @@ function $RootScopeProvider(){ } // copy the items to oldValue and look for changes. for (var i = 0; i < newLength; i++) { - var bothNaN = (oldValue[i] !== oldValue[i]) && + bothNaN = (oldValue[i] !== oldValue[i]) && (newValue[i] !== newValue[i]); if (!bothNaN && (oldValue[i] !== newValue[i])) { changeDetected++; @@ -544,7 +544,9 @@ function $RootScopeProvider(){ if (newValue.hasOwnProperty(key)) { newLength++; if (oldValue.hasOwnProperty(key)) { - if (oldValue[key] !== newValue[key]) { + bothNaN = (oldValue[key] !== oldValue[key]) && + (newValue[key] !== newValue[key]); + if (!bothNaN && (oldValue[key] !== newValue[key])) { changeDetected++; oldValue[key] = newValue[key]; } diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index adafaed5d8ae..9fdf2edd31dd 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -746,6 +746,14 @@ describe('Scope', function() { $rootScope.$digest(); expect(log.empty()).toEqual([{newVal: {b: {}, c: 'B'}, oldVal: {a: [], b: {}, c: 'B'}}]); }); + + it('should not infinitely digest when current value is NaN', function() { + $rootScope.obj = {a: NaN}; + expect(function() { + $rootScope.$digest(); + }).not.toThrow(); + }); + }); });