diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
commit | bca058d18435025bf06fe5c828be82854f1f57b9 (patch) | |
tree | 3888deedcbb056a017a93b745d83b743b599d55d /test/xsl | |
parent | eda42c18ad7dc3f9adef28693bfe0925d0af4e3d (diff) | |
download | xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.tar.gz xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.zip |
1. Implemented validateChildNode() for fo:simple-page-master. This may cause some stress with the user community--as any declared fo:region-xxxx children must follow a specific ordering.
2. Modified several of our sample and test FO files to be compliant with the XSL spec with respect to the change above.
3. @todo's added to FO's still missing validateChildNode()
4. New FONode missingPropertyError() method created, for the major cases where missing properties should halt processing.
5. Various cleanup in our layout-master-set and region classes, including the removal of error checks that are no longer needed due to validateChildNode() being implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197889 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/xsl')
-rw-r--r-- | test/xsl/doc.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/xsl/doc.xsl b/test/xsl/doc.xsl index 606c652ea..edc8f72af 100644 --- a/test/xsl/doc.xsl +++ b/test/xsl/doc.xsl @@ -21,8 +21,8 @@ <fo:root> <fo:layout-master-set> <fo:simple-page-master master-name="one" page-height="29.7cm" page-width="21cm" margin-top="0.5cm" margin-bottom="0.5cm" margin-left="1.5cm" margin-right="1.5cm"> - <fo:region-before extent="1.5cm"/> <fo:region-body margin-top="1.5cm" margin-bottom="2cm"/> + <fo:region-before extent="1.5cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> </fo:layout-master-set> |