diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2016-01-27 11:36:34 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-27 11:36:34 -0500 |
commit | a8c0194d3d58fd064e2c4f8b3cad17f7eb77ebfc (patch) | |
tree | a0afc772bf238b96bf2f61069fc77233707de918 | |
parent | 35c314827d8b5b4eb996cf590d8254eea48a3896 (diff) | |
download | jquery-a8c0194d3d58fd064e2c4f8b3cad17f7eb77ebfc.tar.gz jquery-a8c0194d3d58fd064e2c4f8b3cad17f7eb77ebfc.zip |
CSS: Add test for gh-2867
-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 4ecd08a68..4bad10205 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -1037,6 +1037,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 = [ |