diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-02-17 09:36:53 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-02-17 09:36:53 +0000 |
commit | d4c62ec3a7b27a2aa1d265171aab2146d3a2b2f3 (patch) | |
tree | 73553587353d474954ae2eb4bd4647c4c413cf3a | |
parent | ae6fa5c60aeab4edfe8866424449da6eeb4d3d0f (diff) | |
download | xmlgraphics-fop-d4c62ec3a7b27a2aa1d265171aab2146d3a2b2f3.tar.gz xmlgraphics-fop-d4c62ec3a7b27a2aa1d265171aab2146d3a2b2f3.zip |
region-after may not have borders. Used an absolutely positioned block-container instead.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198439 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | examples/fo/advanced/giro.fo | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/fo/advanced/giro.fo b/examples/fo/advanced/giro.fo index d22f160f1..5b5422ec9 100644 --- a/examples/fo/advanced/giro.fo +++ b/examples/fo/advanced/giro.fo @@ -7,7 +7,7 @@ page-height="29.7cm" margin-top="5mm"> <fo:region-body margin-bottom="4.5in" margin-right="5mm" margin-left="5mm" margin-top="5mm"/> - <fo:region-after extent="4in" border-top-color="silver" border-top-style="dotted" border-top-width="0.13mm"/> + <fo:region-after extent="4in"/> </fo:simple-page-master> <fo:simple-page-master master-name="rest" page-width="21cm" @@ -29,6 +29,9 @@ <fo:page-sequence master-reference="A4"> <fo:static-content flow-name="xsl-region-after"> + <fo:block-container absolute-position="absolute" width="100%" height="100%" border-top-color="silver" border-top-style="dotted" border-top-width="0.13mm"> + <fo:block/> + </fo:block-container> <fo:table space-before.optimum="1in div 12" margin-left="2in div 12" margin-top="1in div 10" font-family="sans-serif" font-size="7pt" color="green"> <fo:table-column column-width="8in div 10 - 2in div 12"/> <fo:table-column border-right-style="solid" border-right-width="0.5mm" column-width="36in div 10"/> |