aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual
diff options
context:
space:
mode:
authorgnarf <gnarf@gnarf.net>2011-05-04 21:04:28 -0500
committergnarf <gnarf@gnarf.net>2011-05-04 21:07:12 -0500
commitc73e40adbec6d3240e92b125e55eae38532ed359 (patch)
tree2bbd2941a0a01f5ba78bd3291d3d9b6c029d2f61 /tests/visual
parent116acb4cb28c4a091547648132316b7f8e9e6072 (diff)
downloadjquery-ui-c73e40adbec6d3240e92b125e55eae38532ed359.tar.gz
jquery-ui-c73e40adbec6d3240e92b125e55eae38532ed359.zip
effects.tests: Adding 'size' effect to the visual effect tests
Diffstat (limited to 'tests/visual')
-rw-r--r--tests/visual/effects.all.html6
-rw-r--r--tests/visual/effects.all.js1
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/visual/effects.all.html b/tests/visual/effects.all.html
index 1fc35f700..5c2c418ae 100644
--- a/tests/visual/effects.all.html
+++ b/tests/visual/effects.all.html
@@ -146,6 +146,12 @@
</li>
<li>
+ <div class="effect" id="size">
+ <p>Size</p>
+ </div>
+ </li>
+
+ <li>
<div class="effect" id="slideDown">
<p>Slide down</p>
</div>
diff --git a/tests/visual/effects.all.js b/tests/visual/effects.all.js
index 3ac8968b3..1c9c71efd 100644
--- a/tests/visual/effects.all.js
+++ b/tests/visual/effects.all.js
@@ -61,6 +61,7 @@ $(function() {
effect("#puff", "puff", { times: 2 });
effect("#scale", "scale", {});
+ effect("#size", "size", { from: { width: 300, height: 300 }});
$("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); });