imported the whole jquery-ui package, refreshed with 1.10.2
[unfold.git] / third-party / jquery-ui-1.10.2 / tests / unit / draggable / draggable_core.js
diff --git a/third-party/jquery-ui-1.10.2/tests/unit/draggable/draggable_core.js b/third-party/jquery-ui-1.10.2/tests/unit/draggable/draggable_core.js
new file mode 100644 (file)
index 0000000..2090f2f
--- /dev/null
@@ -0,0 +1,88 @@
+/*
+ * draggable_core.js
+ */
+
+(function( $ ) {
+
+var relativeElement, absoluteElement;
+
+module( "draggable: core", {
+       setup: function() {
+               relativeElement = $("<div style='width: 200px; height: 100px;'>Relative</div>").appendTo("#qunit-fixture");
+               absoluteElement = $("<div style='background: green; width: 200px; height: 100px; position: absolute; top: 10px; left: 10px;'><span>Absolute</span></div>").appendTo("#qunit-fixture");
+       },
+       teardown: function() {
+               relativeElement.remove();
+               absoluteElement.remove();
+       }
+});
+
+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 * 2 );
+
+       $.each( typeNames, function( i ) {
+               var offsetBefore, offsetAfter,
+                       typeName = typeNames[ i ],
+                       el = $( document.createElement( typeName ) ).appendTo("#qunit-fixture");
+
+               if ( typeName === "table" ) {
+                       el.append("<tr><td>content</td></tr>");
+               }
+
+               el.draggable({ cancel: "" });
+               offsetBefore = el.offset();
+               el.simulate( "drag", {
+                       dx: 50,
+                       dy: 50
+               });
+               offsetAfter = el.offset();
+
+               // Support: FF, Chrome, and IE9,
+               // there are some rounding errors in so we can't say equal, we have to settle for close enough
+               closeEnough( offsetBefore.left, offsetAfter.left - 50, 1, "dragged[50, 50] " + "<" + typeName + ">" );
+               closeEnough( offsetBefore.top, offsetAfter.top - 50, 1, "dragged[50, 50] " + "<" + typeName + ">" );
+               el.draggable("destroy");
+               el.remove();
+       });
+});
+
+test( "No options, relative", function() {
+       expect( 1 );
+       TestHelpers.draggable.shouldMove( relativeElement.draggable() );
+});
+
+test( "No options, absolute", function() {
+       expect( 1 );
+       TestHelpers.draggable.shouldMove( absoluteElement.draggable() );
+});
+
+test( "resizable handle with complex markup (#8756 / #8757)", function() {
+       expect( 2 );
+
+       relativeElement
+               .append(
+                       $("<div>")
+                               .addClass("ui-resizable-handle ui-resizable-w")
+                               .append( $("<div>") )
+               );
+
+       var handle = $(".ui-resizable-w div"),
+               target = relativeElement.draggable().resizable({ handles: "all" });
+
+       // todo: fix resizable so it doesn't require a mouseover
+       handle.simulate("mouseover").simulate( "drag", { dx: -50 } );
+       equal( target.width(), 250, "compare width" );
+
+       // todo: fix resizable so it doesn't require a mouseover
+       handle.simulate("mouseover").simulate( "drag", { dx: 50 } );
+       equal( target.width(), 200, "compare width" );
+});
+
+})( jQuery );