Bug Tracker

Changeset 4285

Show
Ignore:
Timestamp:
12/20/07 19:21:56 (1 year ago)
Author:
davidserduke
Message:

Removed a unit test that tested to see if queued objects were of a certain type. It was decided you can queue anything and it is up to the coder to make sure it was intended.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/test/unit/fx.js

    r4062 r4285  
    88    $('#foo').animate(hash, 0, function() { 
    99        ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' ); 
    10     }); 
    11     // using contents will get comments regular, text, and comment nodes 
    12     $("#nonnodes").contents().animate({paddingLeft:"5px"}, 100, function () { 
    13         equals(this.nodeType, 1, "Check node,textnode,comment animate just does real nodes" ); 
    14         equals($(this).css("paddingLeft"), "5px", "Check node,textnode,comment animate just does real nodes" ); 
    15         start(); 
    1610    }); 
    1711});