blob: 39fe32c651b8f4eb200b247736a20eb0a79613fd [file] [log] [blame]
description("Test for page-break with 'display:none'");
function test()
{
createBlockWithRatioToPageHeight("page1-1", 0.1).style.breakBefore = "page";
// if 'display' is 'none', page break property should not have any effect.
var block = createBlockWithRatioToPageHeight("displaynone", 0.1);
block.style.breakBefore = "page";
block.style.display = "none";
createBlockWithRatioToPageHeight("page1-2", 0.1);
pageNumberForElementShouldBe("page1-1", 1);
pageNumberForElementShouldBe("displaynone", -1);
pageNumberForElementShouldBe("page1-2", 1);
document.body.removeChild(document.getElementById("sandbox"));
}
var successfullyParsed = true;