diff options
Diffstat (limited to 'tests/unit/draggable')
-rw-r--r-- | tests/unit/draggable/core.js | 8 | ||||
-rw-r--r-- | tests/unit/draggable/events.js | 2 | ||||
-rw-r--r-- | tests/unit/draggable/options.js | 12 |
3 files changed, 11 insertions, 11 deletions
diff --git a/tests/unit/draggable/core.js b/tests/unit/draggable/core.js index 9cfbb1853..b8be0fd20 100644 --- a/tests/unit/draggable/core.js +++ b/tests/unit/draggable/core.js @@ -109,7 +109,7 @@ QUnit.test( "#8269: Removing draggable element on drop", function( assert ) { } } ); -// http://bugs.jqueryui.com/ticket/7778 +// https://bugs.jqueryui.com/ticket/7778 // drag element breaks in IE8 when its content is replaced onmousedown QUnit.test( "Stray mousemove after mousedown still drags", function( assert ) { assert.expect( 2 ); @@ -186,11 +186,11 @@ QUnit.test( "scroll offset with fixed ancestors", function( assert ) { var startValue = 300, element = $( "#draggable1" ) - // http://bugs.jqueryui.com/ticket/5009 + // https://bugs.jqueryui.com/ticket/5009 // scroll not working with parent's position fixed .wrap( "<div id='wrapper' />" ) - // http://bugs.jqueryui.com/ticket/9612 + // https://bugs.jqueryui.com/ticket/9612 // abspos elements inside of fixed elements moving away from the mouse when scrolling .wrap( "<div id='wrapper2' />" ) .draggable( { @@ -221,7 +221,7 @@ $( [ "hidden", "auto", "scroll" ] ).each( function() { var overflow = this; // Http://bugs.jqueryui.com/ticket/9379 - position bug in scrollable div - // http://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden" + // https://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden" QUnit.test( "position in scrollable parent with overflow: " + overflow, function( assert ) { assert.expect( 2 ); diff --git a/tests/unit/draggable/events.js b/tests/unit/draggable/events.js index 97ec912ae..45c3c20d5 100644 --- a/tests/unit/draggable/events.js +++ b/tests/unit/draggable/events.js @@ -124,7 +124,7 @@ QUnit.test( "stopping the stop callback", function( assert ) { assert.ok( element.draggable( "instance" ).helper, "the clone should not be deleted if the stop callback is stopped" ); } ); -// http://bugs.jqueryui.com/ticket/6884 +// https://bugs.jqueryui.com/ticket/6884 // Draggable: ui.offset.left differs between the "start" and "drag" hooks QUnit.test( "position and offset in hash is consistent between start, drag, and stop", function( assert ) { assert.expect( 4 ); diff --git a/tests/unit/draggable/options.js b/tests/unit/draggable/options.js index 40a36ba67..10f279037 100644 --- a/tests/unit/draggable/options.js +++ b/tests/unit/draggable/options.js @@ -280,7 +280,7 @@ QUnit.test( "connectToSortable, dragging out of a sortable", function( assert ) $( element ).one( "dragstop", function( event, ui ) { - // http://bugs.jqueryui.com/ticket/8809 + // https://bugs.jqueryui.com/ticket/8809 // Position issue when connected to sortable result = ui.helper.offset(); @@ -324,7 +324,7 @@ QUnit.test( "connectToSortable, dragging clone into sortable", function( assert $( sortable ).one( "sort", function( event, ui ) { offsetPlaceholder = ui.placeholder.offset(); - // http://bugs.jqueryui.com/ticket/8809 + // https://bugs.jqueryui.com/ticket/8809 // Position issue when connected to sortable assert.deepEqual( ui.helper.offset(), offsetSortable, "sortable offset is correct" ); assert.notDeepEqual( ui.helper.offset(), offsetPlaceholder, "offset not equal to placeholder" ); @@ -332,7 +332,7 @@ QUnit.test( "connectToSortable, dragging clone into sortable", function( assert $( sortable ).one( "sortstop", function( event, ui ) { - // http://bugs.jqueryui.com/ticket/9675 + // https://bugs.jqueryui.com/ticket/9675 // Animation issue with revert and connectToSortable assert.deepEqual( ui.item.offset(), offsetPlaceholder, "offset eventually equals placeholder" ); ready(); @@ -571,7 +571,7 @@ QUnit.test( "containment, account for border", function( assert ) { "The draggable should be to the right of its parent's right border" ); } ); -// http://bugs.jqueryui.com/ticket/7016 +// https://bugs.jqueryui.com/ticket/7016 // draggable can be pulled out of containment in Chrome and IE8 QUnit.test( "containment, element cant be pulled out of container", function( assert ) { assert.expect( 1 ); @@ -898,7 +898,7 @@ QUnit.test( "helper, default, switching after initialization", function( assert testHelper.shouldMove( assert, element, "helper: original" ); } ); -// http://bugs.jqueryui.com/ticket/9446 +// https://bugs.jqueryui.com/ticket/9446 // Draggable: helper function cannot emulate default behavior QUnit.test( "helper, function returning original element", function( assert ) { assert.expect( 1 ); @@ -1490,7 +1490,7 @@ QUnit.test( "iframeFix", function( assert ) { var divOffset, iframeOffset, div = $( this ).children().not( "iframe" ); - // http://bugs.jqueryui.com/ticket/9671 + // https://bugs.jqueryui.com/ticket/9671 // iframeFix doesn't handle iframes that move assert.equal( div.length, 1, "blocking div added as sibling" ); assert.equal( div.outerWidth(), iframe.outerWidth(), "blocking div is wide enough" ); |