summaryrefslogtreecommitdiffstats
path: root/apps/it/static/js/ui/tests/unit/droppable/droppable_core.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/static/js/ui/tests/unit/droppable/droppable_core.js')
-rw-r--r--apps/it/static/js/ui/tests/unit/droppable/droppable_core.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/it/static/js/ui/tests/unit/droppable/droppable_core.js b/apps/it/static/js/ui/tests/unit/droppable/droppable_core.js
deleted file mode 100644
index 53b08fd..0000000
--- a/apps/it/static/js/ui/tests/unit/droppable/droppable_core.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * droppable_core.js
- */
-
-(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,hr" +
- ",input,button,label,select,iframe").split(",");
-
- expect( typeNames.length );
-
- $.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();
- TestHelpers.droppable.shouldDrop();
- el.droppable("destroy");
- el.remove();
- });
-});
-
-})(jQuery);