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
|
|
|
|
|
|
|
module("droppable: core");
|
|
|
|
|
|
|
|
test("element types", function() {
|
2012-12-26 13:08:48 +00:00
|
|
|
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(",");
|
2009-02-02 07:09:15 +00:00
|
|
|
|
2012-10-31 02:19:49 +00:00
|
|
|
expect( typeNames.length );
|
|
|
|
|
2009-02-02 07:09:15 +00:00
|
|
|
$.each(typeNames, function(i) {
|
2012-10-31 02:19:49 +00:00
|
|
|
var typeName = typeNames[i],
|
2012-12-26 13:08:48 +00:00
|
|
|
el = $(document.createElement(typeName)).appendTo("body");
|
2012-10-31 02:19:49 +00:00
|
|
|
|
2012-12-26 13:08:48 +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();
|
2009-02-02 07:09:15 +00:00
|
|
|
el.droppable("destroy");
|
|
|
|
el.remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-04-07 00:35:27 +00:00
|
|
|
} );
|