aboutsummaryrefslogtreecommitdiffstats
path: root/test/jqLiteSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/jqLiteSpec.js')
-rw-r--r--test/jqLiteSpec.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js
index aac5aeb5..ed929cb7 100644
--- a/test/jqLiteSpec.js
+++ b/test/jqLiteSpec.js
@@ -168,15 +168,6 @@ describe('jqLite', function(){
var elm = jqLite('<div class="any">a</div>');
expect(elm.attr('non-existing')).toBeUndefined();
});
-
- it('should special-case "class" attribute', function() {
- // stupid IE9 returns null for element.getAttribute('class') when element has ng:class attr
- var elm = jqLite('<div class=" any " ng:class="dynCls">a</div>');
- expect(elm.attr('class')).toBe(' any ');
-
- elm.attr('class', 'foo bar');
- expect(elm.attr('class')).toBe('foo bar');
- });
});