jquery-ui/tests/unit/droppable/core.js
Michał Gołębiowski-Owczarek 70dae67b73
Build: Migrate from JSHint & JSCS to ESLint
Fixes #15393
Closes gh-1958
2021-06-07 00:58:12 +02:00

35 lines
871 B
JavaScript

define( [
"qunit",
"jquery",
"lib/helper",
"./helper",
"ui/widgets/droppable"
], function( QUnit, $, helper, testHelper ) {
"use strict";
QUnit.module( "droppable: core", { afterEach: helper.moduleAfterEach } );
QUnit.test( "element types", function( assert ) {
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( "," );
assert.expect( typeNames.length );
$.each( typeNames, function( i ) {
var typeName = typeNames[ i ],
el = $( document.createElement( typeName ) ).appendTo( "body" );
if ( typeName === "table" ) {
el.append( "<tr><td>content</td></tr>" );
}
el.droppable();
testHelper.shouldDrop( assert );
el.droppable( "destroy" );
el.remove();
} );
} );
} );