diff options
| author | Tobias Bosch | 2013-11-21 14:30:50 -0800 |
|---|---|---|
| committer | Tobias Bosch | 2013-11-21 21:53:09 -0800 |
| commit | 579242346c4202ea58fc2cae6df232289cbea0bb (patch) | |
| tree | c2ef1ed6020f93994a080d13871c636e5618fbb5 /test/ng/compileSpec.js | |
| parent | c42d0a041890b39fc98afd357ec1307a3a36208d (diff) | |
| download | angular.js-579242346c4202ea58fc2cae6df232289cbea0bb.tar.bz2 | |
fix(tests): Correct tests for IE11
Some tests were wrong. However, src/* did not contain problems.
Fixes #5046
Diffstat (limited to 'test/ng/compileSpec.js')
| -rwxr-xr-x | test/ng/compileSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index c25c5040..5b6e1ada 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -596,8 +596,8 @@ describe('$compile', function() { expect(element).toHaveClass('class_2'); })); - if (!msie || msie > 10) { - // style interpolation not working on IE<11. + if (!msie || msie > 11) { + // style interpolation not working on IE (including IE11). it('should handle interpolated css style from replacing directive', inject( function($compile, $rootScope) { element = $compile('<div replace-with-interpolated-style></div>')($rootScope); |
