Tooltip: Allow tracking tooltips to be off by a fraciton of a pixel

Closes gh-1718
This commit is contained in:
Scott González 2016-07-06 16:39:05 -04:00
parent dc8b1c8bb9
commit 92451b44c1

View File

@ -203,8 +203,16 @@ QUnit.test( "track + show delay", function( assert ) {
event.pageY = topVal;
element.trigger( event );
assert.equal( $( ".ui-tooltip" ).css( "left" ), leftVal + offsetVal + "px" );
assert.equal( $( ".ui-tooltip" ).css( "top" ), topVal + offsetVal + "px" );
assert.close(
parseFloat( $( ".ui-tooltip" ).css( "left" ) ),
leftVal + offsetVal, 0.5,
"left position"
);
assert.close(
parseFloat( $( ".ui-tooltip" ).css( "top" ) ),
topVal + offsetVal, 0.5,
"top position"
);
} );
QUnit.test( "track and programmatic focus", function( assert ) {