2015-04-07 00:35:27 +00:00
|
|
|
define( [
|
|
|
|
"jquery",
|
2015-04-07 14:55:52 +00:00
|
|
|
"./helper",
|
2015-07-15 02:03:06 +00:00
|
|
|
"ui/widgets/droppable"
|
2015-04-07 14:30:07 +00:00
|
|
|
], function( $, testHelper ) {
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2015-08-24 12:59:32 +00:00
|
|
|
module( "droppable: core" );
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2015-08-24 12:59:32 +00:00
|
|
|
test( "element types", function() {
|
|
|
|
var typeNames = ( "p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" +
|
2012-12-26 13:08:48 +00:00
|
|
|
",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" +
|
|
|
|
",acronym,code,samp,kbd,var,img,hr" +
|
2015-08-24 12:59:32 +00:00
|
|
|
",input,button,label,select,iframe" ).split( "," );
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2012-10-31 02:19:49 +00:00
|
|
|
expect( typeNames.length );
|
|
|
|
|
2015-08-24 12:59:32 +00:00
|
|
|
$.each( typeNames, function( i ) {
|
|
|
|
var typeName = typeNames[ i ],
|
|
|
|
el = $( document.createElement( typeName ) ).appendTo( "body" );
|
2012-10-31 02:19:49 +00:00
|
|
|
|
2015-08-24 12:59:32 +00:00
|
|
|
( typeName === "table" && el.append( "<tr><td>content</td></tr>" ) );
|
2009-02-02 07:09:15 +00:00
|
|
|
el.droppable();
|
2015-04-07 14:30:07 +00:00
|
|
|
testHelper.shouldDrop();
|
2015-08-24 12:59:32 +00:00
|
|
|
el.droppable( "destroy" );
|
2009-02-02 07:09:15 +00:00
|
|
|
el.remove();
|
2015-08-24 12:59:32 +00:00
|
|
|
} );
|
|
|
|
} );
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2015-04-07 00:35:27 +00:00
|
|
|
} );
|