Attributes: fix tabIndex on <img> in IE11

Fixes gh-2647
Closes gh-2664

(cherry picked from commit c752a5030b)

Conflicts:
	src/attributes/prop.js
This commit is contained in:
Joelle Fleurantin 2015-10-18 16:20:25 -04:00 committed by Richard Gibson
parent 24ab83659e
commit cf4092eeea

View File

@ -733,6 +733,13 @@ QUnit.test( "prop('tabindex')", function( assert ) {
assert.equal( jQuery( "#linkWithNoHrefWithNegativeTabIndex" ).prop( "tabindex" ), -1, "anchor without href, no tabindex set" ); 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 ) { QUnit.test( "prop('tabindex', value)", function( assert ) {
assert.expect( 10 ); assert.expect( 10 );