diff options
| author | Kai Compagner | 2010-07-15 03:08:55 +0800 |
|---|---|---|
| committer | Misko Hevery | 2010-07-15 07:40:27 +0800 |
| commit | 0a57273f0000421639c926d4d180680e3a64c0f7 (patch) | |
| tree | 069df1c8fc9ce1ae39af468ada45e6597d085eb0 /test/directivesSpec.js | |
| parent | 32361d03a147213747762e17d279639666ed85fb (diff) | |
| download | angular.js-0a57273f0000421639c926d4d180680e3a64c0f7.tar.bz2 | |
fix undefine style
Diffstat (limited to 'test/directivesSpec.js')
| -rw-r--r-- | test/directivesSpec.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/directivesSpec.js b/test/directivesSpec.js index df0b5b94..ef4814bf 100644 --- a/test/directivesSpec.js +++ b/test/directivesSpec.js @@ -174,6 +174,13 @@ describe("directives", function(){ expect(element.css('color')).toEqual('red'); }); + it('should silently ignore undefined ng:style', function() { + var scope = compile('<div ng:style="myStyle"></div>'); + scope.$eval(); + dump(sortedHtml(element)); + expect(element.hasClass('ng-exception')).toBeFalsy(); + }); + it('should ng:show', function(){ var scope = compile('<div ng:hide="hide"></div>'); scope.$eval(); |
