diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-05 18:59:52 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-05 18:59:52 +0100 |
commit | 98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4 (patch) | |
tree | 8f9eccb45f512a1e68ccdd1a159223c8eb5790ba /tests | |
parent | 8b3e57024138f1a40be762fd5d29cc390129a8ad (diff) | |
download | jquery-ui-98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4.tar.gz jquery-ui-98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4.zip |
Tooltip: Check type on event directly, preventing TypeError when programmatically moving focus to track-toolipped-input. Fixes #8747 - Tooltip: Using the track option within dialogs creates JS errors
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/tooltip/tooltip_options.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unit/tooltip/tooltip_options.js b/tests/unit/tooltip/tooltip_options.js index 9f0de2b57..f9da27fb7 100644 --- a/tests/unit/tooltip/tooltip_options.js +++ b/tests/unit/tooltip/tooltip_options.js @@ -146,4 +146,12 @@ test( "track + show delay", function() { equal( $( ".ui-tooltip" ).css( "top" ), topVal + offsetVal + "px" ); }); +test( "track and programmatic focus", function() { + expect( 1 ); + $( "#qunit-fixture div input" ).tooltip({ + track: true + }).focus(); + equal( "inputtitle", $( ".ui-tooltip" ).text() ); +}); + }( jQuery ) ); |