mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Css: Use only positive integers as values for widows/orphans
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
This commit is contained in:
parent
1ca84214cc
commit
def4841cfa
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user