Permalink
Browse files
Attributes: fix tabIndex on <img> in IE11
- Loading branch information...
Showing
with
7 additions
and
0 deletions.
-
+7
−0
test/unit/attributes.js
|
|
@@ -733,6 +733,13 @@ QUnit.test( "prop('tabindex')", function( assert ) { |
|
|
|
assert.equal( jQuery( "#linkWithNoHrefWithNegativeTabIndex" ).prop( "tabindex" ), -1, "anchor without href, no tabindex set" ); |
|
|
|
} ); |
|
|
|
|
|
|
|
QUnit.test( "image.prop( 'tabIndex' )", function( assert ) { |
|
|
|
assert.expect( 1 ); |
|
|
|
var image = jQuery("<img src='data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7' />") |
|
|
|
.appendTo("#qunit-fixture"); |
|
|
|
assert.equal( image.prop("tabIndex" ), -1, "tabIndex on image" ); |
|
|
|
} ); |
|
|
|
|
|
|
|
QUnit.test( "prop('tabindex', value)", function( assert ) { |
|
|
|
assert.expect( 10 ); |
|
|
|
|
|
|
|
0 comments on commit
cf4092e