]> source.dussan.org Git - jquery.git/commitdiff
Adding unit tests for #8403
authorlouisremi <louisremi@louisremi-laptop.(none)>
Mon, 7 Mar 2011 13:43:08 +0000 (14:43 +0100)
committerlouisremi <louisremi@louisremi-laptop.(none)>
Mon, 7 Mar 2011 13:43:08 +0000 (14:43 +0100)
test/data/testsuite.css
test/unit/css.js

index cffaaa46ab307c507a5441beb534e7303fe4ace7..02900681059a93ab1b7cd3f9eae8a9fb0d6c36a1 100644 (file)
@@ -1,5 +1,5 @@
 /* for testing opacity set in styles in IE */
-ol#empty { opacity: 0; filter:Alpha(opacity=0); }
+ol#empty { opacity: 0; filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff'); }
 
 div#fx-tests h4 {
         background: red;
index 555f135756f887a9814ceeb22ebe549819e6c534..874661879f941e964d4f676e45f97bacddbce45c 100644 (file)
@@ -1,7 +1,7 @@
 module("css", { teardown: moduleTeardown });
 
 test("css(String|Hash)", function() {
-       expect(41);
+       expect(42);
 
        equals( jQuery('#main').css("display"), 'block', 'Check for css property "display"');
 
@@ -58,6 +58,7 @@ test("css(String|Hash)", function() {
        equals( jQuery('#empty').css('opacity'), '0', "Assert opacity is accessible via filter property set in stylesheet in IE" );
        jQuery('#empty').css({ opacity: '1' });
        equals( jQuery('#empty').css('opacity'), '1', "Assert opacity is taken from style attribute when set vs stylesheet in IE with filters" );
+       ok( ~jQuery('#empty')[0].currentStyle.filter.indexOf('gradient'), "Assert setting opacity doesn't overwrite other filters of the stylesheet in IE" );
 
        var div = jQuery('#nothiddendiv'), child = jQuery('#nothiddendivchild');