mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
bb49bd794b
Closes gh-2249
28 lines
628 B
JavaScript
28 lines
628 B
JavaScript
define( [
|
|
"qunit",
|
|
"jquery",
|
|
"lib/helper",
|
|
"ui/widgets/button"
|
|
], function( QUnit, $, helper ) {
|
|
"use strict";
|
|
|
|
QUnit.module( "Button: core", { afterEach: helper.moduleAfterEach } );
|
|
|
|
QUnit.test( "Disabled button loses focus", function( assert ) {
|
|
var ready = assert.async();
|
|
assert.expect( 2 );
|
|
var element = $( "#button" ).button();
|
|
|
|
element.trigger( "focus" );
|
|
setTimeout( function() {
|
|
|
|
assert.equal( element[ 0 ], document.activeElement, "Button is focused" );
|
|
|
|
element.button( "disable" );
|
|
assert.notEqual( element[ 0 ], document.activeElement, "Button has had focus removed" );
|
|
ready();
|
|
} );
|
|
} );
|
|
|
|
} );
|