]> source.dussan.org Git - jquery.git/commitdiff
Fix #12324, line-height "normal" isn't always "1". Close gh-898.
authorMike Sherov <mike.sherov@gmail.com>
Sun, 19 Aug 2012 20:03:08 +0000 (16:03 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Mon, 20 Aug 2012 02:46:06 +0000 (22:46 -0400)
src/css.js
test/unit/css.js

index d9e7f00d6220bb2a2923af1b2d602355a19f146f..3d756502038f4548f05d70c94e124b7a1dc6d399 100644 (file)
@@ -11,8 +11,7 @@ var curCSS, iframe, iframeDoc,
        cssShow = { position: "absolute", visibility: "hidden", display: "block" },
        cssNormalTransform = {
                letterSpacing: 0,
-               fontWeight: 400,
-               lineHeight: 1
+               fontWeight: 400
        },
 
        cssExpand = [ "Top", "Right", "Bottom", "Left" ],
index dca5a08e0020740386c1ac4e1f42bb4e27163304..30ce95fc9c35f6a4e14a48b2499a6299f474decd 100644 (file)
@@ -776,11 +776,10 @@ test("css('width') and css('height') should respect box-sizing, see #11004", fun
 });
 
 test("certain css values of 'normal' should be convertable to a number, see #8627", function() {
-       var el = jQuery("<div style='letter-spacing:normal;font-weight:normal;line-height:normal;'>test</div>").appendTo("#qunit-fixture");
+       var el = jQuery("<div style='letter-spacing:normal;font-weight:normal;'>test</div>").appendTo("#qunit-fixture");
 
        ok( jQuery.isNumeric( parseFloat( el.css("letterSpacing") ) ), "css('letterSpacing') not convertable to number, see #8627" );
        ok( jQuery.isNumeric( parseFloat( el.css("fontWeight") ) ), "css('fontWeight') not convertable to number, see #8627" );
-       ok( jQuery.isNumeric( parseFloat( el.css("lineHeight") ) ), "css('lineHeight') not convertable to number, see #8627" );
 });
 
 test( "cssHooks - expand", function() {