]> source.dussan.org Git - jquery.git/commitdiff
CSS: Add test for gh-2867
authorTimmy Willison <timmywillisn@gmail.com>
Wed, 27 Jan 2016 16:36:34 +0000 (11:36 -0500)
committerTimmy Willison <timmywillisn@gmail.com>
Wed, 27 Jan 2016 16:39:32 +0000 (11:39 -0500)
test/unit/css.js

index 95ba696697692b43f302c3e405c79046b6f99a1a..58e9e1364ccbd3a923503ae449889354c5be87f5 100644 (file)
@@ -876,6 +876,16 @@ QUnit.test( "can't get css for disconnected in IE<9, see #10254 and #8388", func
        assert.equal( div.css( "top" ), "10px", "can't get top in IE<9, see #8388" );
 } );
 
+QUnit.test( "Ensure styles are retrieving from parsed html on document fragments", function( assert ) {
+       assert.expect( 1 );
+
+       var $span = jQuery(
+               jQuery.parseHTML( "<span style=\"font-family: Cuprum,sans-serif; font-size: 14px; color: #999999;\">some text</span>" )
+       );
+
+       assert.equal( $span.css( "font-size" ), "14px", "Font-size retrievable on parsed HTML node" );
+} );
+
 QUnit.test( "can't get background-position in IE<9, see #10796", function( assert ) {
        var div = jQuery( "<div/>" ).appendTo( "#qunit-fixture" ),
                units = [