2015-04-07 00:35:27 +00:00
|
|
|
define( [
|
2016-04-03 16:32:14 +00:00
|
|
|
"qunit",
|
2015-04-07 00:35:27 +00:00
|
|
|
"jquery",
|
2020-05-16 07:16:24 +00:00
|
|
|
"lib/helper",
|
2015-04-07 14:55:52 +00:00
|
|
|
"./helper",
|
2015-07-15 02:03:06 +00:00
|
|
|
"ui/widgets/droppable"
|
2020-05-16 07:16:24 +00:00
|
|
|
], function( QUnit, $, helper, testHelper ) {
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2020-05-16 07:16:24 +00:00
|
|
|
QUnit.module( "droppable: core", { afterEach: helper.moduleAfterEach } );
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2016-04-03 16:32:14 +00:00
|
|
|
QUnit.test( "element types", function( assert ) {
|
2015-08-24 12:59:32 +00:00
|
|
|
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
|
|
|
|
2016-04-03 16:32:14 +00:00
|
|
|
assert.expect( typeNames.length );
|
2012-10-31 02:19:49 +00:00
|
|
|
|
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();
|
2016-04-03 16:32:14 +00:00
|
|
|
testHelper.shouldDrop( assert );
|
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
|
|
|
} );
|