These failed when running through tests/unit/all.html, due to the smaller
iframe. Reducing a browser window enough triggered the same issue. Making
the top offset much smaller fixes that.
The rest is fixing bad indent and adds a missing module call.
}
.sortable {
position: relative;
- top: 8000px;
+ top: 800px;
left: 10px;
width: 300px;
padding: 0;
<div style="width: 1px; height: 1000px;"></div>
<div style="position: absolute; width: 1px; height: 2000px;"></div>
<ul id="sortable" class="sortable">
- <li id="draggableSortable">Item 0</li>
- <li id="draggableSortable2">Item 1</li>
- <li>Item 2</li>
- <li>Item 3</li>
- </ul>
- <ul id="sortable2" class="sortable">
- <li id="draggableSortableClone" class="sortable2Item">Item 0</li>
- <li>Item 1</li>
- <li>Item 2</li>
- <li>Item 3</li>
- </ul>
+ <li id="draggableSortable">Item 0</li>
+ <li id="draggableSortable2">Item 1</li>
+ <li>Item 2</li>
+ <li>Item 3</li>
+ </ul>
+ <ul id="sortable2" class="sortable">
+ <li id="draggableSortableClone" class="sortable2Item">Item 0</li>
+ <li>Item 1</li>
+ <li>Item 2</li>
+ <li>Item 3</li>
+ </ul>
</div>
</body>
"ui/widgets/sortable"
], function( $, testHelper ) {
+module( "draggable: options" );
+
// TODO: This doesn't actually test whether append happened, possibly remove
test( "{ appendTo: 'parent' }, default, no clone", function() {
expect( 4 );