I read in this bugfix description that xhtmlrenderer should support the "orphans" and "widows" properties of CSS3 since Version R5. Using R8, it seems not to work.

div.textContent {
    orphans: 5;
    widows: 3;
}

But it looks like this:

Wrong paragraph breaking

The paragraph (a div block element) is broken into two pieces although it must not.

Any ideas or experience with this? Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
+25

It is a bug in the Flying Saucer (xhtmlrenderer). There is a satisfyWidowsAndOrphans function in BlockBox.java, but it is called only after isNeedPageClear is called. I've created an issue in the issue tracker.

Note that the page-break-inside: avoid; css rule works.

link|improve this answer
I assume this is the answer. Thank you for the page-brake-inside hint, maybe i will apply it to <p> in certain circumstances. – Mulmoth Feb 17 '11 at 6:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.