PHP Classes

File: src/MSD/HomeBundle/Resources/public/js/jquery-ui-1.10.3/tests/unit/droppable/droppable_core.js

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   src/MSD/HomeBundle/Resources/public/js/jquery-ui-1.10.3/tests/unit/droppable/droppable_core.js   Download  
File: src/MSD/HomeBundle/Resources/public/js/jquery-ui-1.10.3/tests/unit/droppable/droppable_core.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Online PHP Image Transform
Application to do interactive image manipulation
Author: By
Last change:
Date: 4 years ago
Size: 680 bytes
 

Contents

Class file image Download
/* * 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);