diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-21 22:45:36 +0100 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-21 22:45:36 +0100 |
commit | 339543636f521a0c7d3c5a4138937e3a7dc2d1ba (patch) | |
tree | f41e9987d7016f118b60d6d5990403d6ca64f23e /tests | |
parent | 7dbf7ecfc1d01bd23de1fa2785d58b8451e64f56 (diff) | |
download | jquery-ui-339543636f521a0c7d3c5a4138937e3a7dc2d1ba.tar.gz jquery-ui-339543636f521a0c7d3c5a4138937e3a7dc2d1ba.zip |
Tooltip: Added another element for testing the issue with mouseover/out
Diffstat (limited to 'tests')
-rw-r--r-- | tests/visual/tooltip/tooltip.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/visual/tooltip/tooltip.html b/tests/visual/tooltip/tooltip.html index c0401be66..5b0f9059a 100644 --- a/tests/visual/tooltip/tooltip.html +++ b/tests/visual/tooltip/tooltip.html @@ -20,7 +20,7 @@ function enable() { // default - $("#context1, form input").tooltip(); + $("#context1, form input, #childish").tooltip(); // custom class, replaces ui-widget-content $("#context2").tooltip({ @@ -105,6 +105,10 @@ </div> </div> + <div id="childish" class="ui-widget ui-widget-content" style="margin: 2em 0; border: 1px solid black;" title="element with child elements"> + Text in <strong>bold</strong>. + </div> + <form style="margin: 2em 0;"> <div> <label for="first">First Name:</label> |