mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Core tests: Split .focus() test into two tests to avoid bug in IE with stop() and start().
This commit is contained in:
parent
d8c6c32b87
commit
23d4eb5372
@ -5,27 +5,27 @@
|
|||||||
|
|
||||||
module('core - jQuery extensions');
|
module('core - jQuery extensions');
|
||||||
|
|
||||||
test('focus', function() {
|
test('focus - original functionality', function() {
|
||||||
expect(3);
|
expect(1);
|
||||||
|
|
||||||
var el = $('#inputTabindex0'),
|
$('#inputTabindex0')
|
||||||
// used to remove focus from the main element
|
.focus(function() {
|
||||||
other = $('#inputTabindex10');
|
ok(true, 'event triggered');
|
||||||
|
})
|
||||||
// test original functionality
|
.focus();
|
||||||
el.focus(function() {
|
});
|
||||||
ok(true, 'event triggered');
|
|
||||||
});
|
asyncTest('focus', function() {
|
||||||
el.focus();
|
expect(2);
|
||||||
other.focus();
|
$('#inputTabindex0')
|
||||||
|
.focus(function() {
|
||||||
// trigger event handler + callback
|
ok(true, 'event triggered');
|
||||||
stop();
|
})
|
||||||
el.focus(500, function() {
|
.focus(500, function() {
|
||||||
ok(true, 'callback triggered');
|
ok(true, 'callback triggered');
|
||||||
start();
|
$(this).unbind('focus');
|
||||||
});
|
start();
|
||||||
other.focus();
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test('zIndex', function() {
|
test('zIndex', function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user