mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
0cab9f0a2f
Ref #14246
30 lines
733 B
JavaScript
30 lines
733 B
JavaScript
define( [
|
|
"jquery",
|
|
"./helper",
|
|
"ui/widgets/droppable"
|
|
], function( $, testHelper ) {
|
|
|
|
module( "droppable: core" );
|
|
|
|
test( "element types", function() {
|
|
var typeNames = ( "p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" +
|
|
",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" +
|
|
",acronym,code,samp,kbd,var,img,hr" +
|
|
",input,button,label,select,iframe" ).split( "," );
|
|
|
|
expect( typeNames.length );
|
|
|
|
$.each( typeNames, function( i ) {
|
|
var typeName = typeNames[ i ],
|
|
el = $( document.createElement( typeName ) ).appendTo( "body" );
|
|
|
|
( typeName === "table" && el.append( "<tr><td>content</td></tr>" ) );
|
|
el.droppable();
|
|
testHelper.shouldDrop();
|
|
el.droppable( "destroy" );
|
|
el.remove();
|
|
} );
|
|
} );
|
|
|
|
} );
|