Skip to content

Commit

Permalink
add test for 0 duration
Browse files Browse the repository at this point in the history
  • Loading branch information
louisremi committed May 2, 2012
1 parent f1bb124 commit 57c3241
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 154 deletions.
154 changes: 0 additions & 154 deletions index.html

This file was deleted.

5 changes: 5 additions & 0 deletions test/transform2d.html
Expand Up @@ -88,6 +88,11 @@ <h2><code>$elem.animate({"transform": "rotate(45deg)"});</code></h2>
<div id="test8" class="rslt"></div>
<script>later('$("#test8").animate({"transform": "rotate(45deg)"})');</script>

<h2><code>$elem.animate({"transform": "rotate(45deg)"}, 0);</code></h2>
<div class="ref" style="-moz-transform: rotate(45deg)"></div>
<div id="test8b" class="rslt"></div>
<script>later('$("#test8b").animate({"transform": "rotate(45deg)"}, 0)');</script>

<h2><code>$elem.animate({"transform": "rotate(45deg) translateY(-68px) skewX(-30deg) scale(1.2) matrix(.5, .433, -.5, 1.033, 50, -10)}");</code></h2>
<div class="ref" style="-moz-transform: rotate(45deg) translateY(-68px) skewX(-30deg) scale(1.2) matrix(.5, .433, -.5, 1.033, 50px, -10px)"></div>
<div class="relative">
Expand Down

0 comments on commit 57c3241

Please sign in to comment.