diff options
author | rwldrn <waldron.rick@gmail.com> | 2011-06-14 15:59:22 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-06-14 15:59:22 -0400 |
commit | 5eef5917fdb399ace2698154c4cd7bbd24f13182 (patch) | |
tree | f49e1a593fa4880032cafaf1ecfebb528a7ee66b /test | |
parent | 13ceb0f56b380b395ed5a26b468bf2bf00d88216 (diff) | |
download | jquery-5eef5917fdb399ace2698154c4cd7bbd24f13182.tar.gz jquery-5eef5917fdb399ace2698154c4cd7bbd24f13182.zip |
Landing pull request 409. Adds fillOpacity to internal cssNumber. Fixes #9548.
More Details:
- https://github.com/jquery/jquery/pull/409
- http://bugs.jquery.com/ticket/9548
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/css.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index e631f4962..f421f7bd4 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -475,3 +475,13 @@ test("widows & orphans #8936", function () { $p.remove(); }); + +test("Do not append px to 'fill-opacity' #9548", 1, function() { + + var $div = jQuery("<div>").appendTo("#qunit-fixture"); + + $div.css("fill-opacity", 0).animate({ "fill-opacity": 1.0 }, 0, function () { + equal( jQuery(this).css("fill-opacity"), 1, "Do not append px to 'fill-opacity'"); + }); + +}); |