From: Eduardo Lundgren Date: Fri, 30 May 2008 23:36:54 +0000 (+0000) Subject: Starting alpha tests using userAction syncrhonous drag X-Git-Tag: 1.5.1~264 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=956656bc2a09790dc2ba6f4bea27d288afd61c91;p=jquery-ui.git Starting alpha tests using userAction syncrhonous drag --- diff --git a/ui/tests/resizable.html b/ui/tests/resizable.html index 4580fbf2d..80ff15359 100644 --- a/ui/tests/resizable.html +++ b/ui/tests/resizable.html @@ -32,7 +32,7 @@

-
I'm a resizable.
+
I'm a resizable.
    diff --git a/ui/tests/resizable.js b/ui/tests/resizable.js index d561f32a6..1cd3a4816 100644 --- a/ui/tests/resizable.js +++ b/ui/tests/resizable.js @@ -15,50 +15,44 @@ var num = function(i) { }; $(document).ready(function() { - - + + var drag = function(el, dx, dy, complete) { + + // speed = sync -> Drag syncrhonously. + // speed = fast|slow -> Drag asyncrhonously - animated. + + $(el).userAction("drag", { + dx: dx, dy: dy, speed: 'sync', complete: complete + }); + }; + $('#resizable1').resizable({ resize: function() { - //console.log('resize') + console.log('resize') } }); - $('.ui-resizable-se').userAction("drag", 100); - $('.ui-resizable-se').userAction("drag", 200, 50); - $('.ui-resizable-se').userAction("drag", 400); - $('.ui-resizable-se').userAction("drag", -600, -30); + module("Test 1"); - return; - - module("resizable: simple resize"); + test("simple resize tests", function() { + + drag('.ui-resizable-se', 100, 50); + + }); - test("simple resize x", function() { - - $('#resizable1').resizable({ - resize: function() { - console.log('resize') - } - }); + + test("simple resize tests 2", function() { - $('.ui-resizable-e').userAction("drag", 100); - $('.ui-resizable-e').userAction("drag", 200); - $('.ui-resizable-e').userAction("drag", 200); + //drag('.ui-resizable-se', 0, 1000); - //expect(2); - //ok(false, "Resize element on the same position"); + }); + + module("Test 2"); + + test("simple resize tests", function() { + //drag('.ui-resizable-se', 15, 0); }); - /*test("autoheight", function() { - $('#navigation').accordion({ header: '.head', autoheight: false }); - equals( 90, $('#navigation ul:first').height() ); - equals( 126, $('#navigation ul:eq(1)').height() ); - equals( 54, $('#navigation ul:last').height() ); - $('#navigation').accordion("destroy").accordion({ header: '.head',autoheight: true }); - equals( 126, $('#navigation ul:first').height() ); - equals( 126, $('#navigation ul:eq(1)').height() ); - equals( 126, $('#navigation ul:last').height() ); - });*/ - }); \ No newline at end of file