diff options
Diffstat (limited to 'tests/visual')
-rw-r--r-- | tests/visual/tooltip/tooltip.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/visual/tooltip/tooltip.html b/tests/visual/tooltip/tooltip.html index 8f9b2e8df..97fa99bb9 100644 --- a/tests/visual/tooltip/tooltip.html +++ b/tests/visual/tooltip/tooltip.html @@ -90,6 +90,10 @@ offset: "0 -5" } }); + + $( "#blurs-on-click" ).tooltip().click(function() { + $( "#focus-on-me" ).focus(); + }); }); </script> </head> @@ -154,6 +158,9 @@ </div> </div> + <button id="blurs-on-click" title="button title text">click me to focus something else</button> + <input id="focus-on-me"> + <div class="group"> <p>Play around with focusing and hovering of form elements.</p> <form> |