Sha256: af33eb7cec91ab8cd5bae7def72d0bc0f3efec51e8a35bef281f1939c31acbad

Contents?: true

Size: 842 Bytes

Versions: 8

Compression:

Stored size: 842 Bytes

Contents

/*
 * 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() {
	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(',');

	$.each(typeNames, function(i) {
		var typeName = typeNames[i];
		el = $(document.createElement(typeName)).appendTo('body');
		(typeName == 'table' && el.append("<tr><td>content</td></tr>"));
		el.droppable();
		shouldBeDroppable();
		el.droppable("destroy");
		el.remove();
	});
});

})(jQuery);

Version data entries

8 entries across 7 versions & 1 rubygems

Version Path
survivalkit-0.3.4 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.3.3 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.3.3 templates/drupal/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.3.2 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.3.1 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.3 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.2.1 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js
survivalkit-0.1 templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js