2009-02-02 07:09:15 +00:00
|
|
|
/*
|
|
|
|
* droppable_core.js
|
|
|
|
*/
|
|
|
|
|
|
|
|
var el, drg;
|
|
|
|
|
|
|
|
function shouldBeDroppable() {
|
|
|
|
ok(false, 'missing test - untested code is broken code');
|
|
|
|
}
|
|
|
|
|
|
|
|
function shouldNotBeDroppable() {
|
|
|
|
ok(false, 'missing test - untested code is broken code');
|
|
|
|
}
|
|
|
|
|
|
|
|
(function($) {
|
|
|
|
|
|
|
|
module("droppable: core");
|
|
|
|
|
|
|
|
test("element types", function() {
|
2012-04-19 14:27:06 +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,object,hr' +
|
|
|
|
',input,button,label,select,iframe').split(',');
|
2009-02-02 07:09:15 +00:00
|
|
|
|
|
|
|
$.each(typeNames, function(i) {
|
|
|
|
var typeName = typeNames[i];
|
|
|
|
el = $(document.createElement(typeName)).appendTo('body');
|
2012-04-19 14:27:06 +00:00
|
|
|
(typeName === 'table' && el.append("<tr><td>content</td></tr>"));
|
2009-02-02 07:09:15 +00:00
|
|
|
el.droppable();
|
|
|
|
shouldBeDroppable();
|
|
|
|
el.droppable("destroy");
|
|
|
|
el.remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
})(jQuery);
|