]> source.dussan.org Git - jquery.git/commitdiff
Css: Use only positive integers as values for widows/orphans 1563/head
authorMichał Gołębiowski <m.goleb@gmail.com>
Fri, 18 Apr 2014 00:07:17 +0000 (02:07 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Fri, 18 Apr 2014 14:21:21 +0000 (16:21 +0200)
According to http://www.w3.org/TR/CSS2/page.html#propdef-orphans, widows
and orphans can take only positive integer values. Together with a Chrome 34
regression this caused the test to fail.

Fixes #15016
Closes gh-1563

test/unit/css.js

index 6a8d7ac465138bf8db7ee8f9b6244571e418e232..bfbe8ae5e55867b93ae378705a76eb1c56f3b44c 100644 (file)
@@ -708,14 +708,7 @@ test("widows & orphans #8936", function () {
 
        var $p = jQuery("<p>").appendTo("#qunit-fixture");
 
-       expect( 4 );
-       $p.css({
-               "widows": 0,
-               "orphans": 0
-       });
-
-       equal( $p.css( "widows" ) || jQuery.style( $p[0], "widows" ), 0, "widows correctly start with value 0" );
-       equal( $p.css( "orphans" ) || jQuery.style( $p[0], "orphans" ), 0, "orphans correctly start with value 0" );
+       expect( 2 );
 
        $p.css({
                "widows": 3,