diff options
author | Keiron Liddle <keiron@apache.org> | 2001-05-22 13:05:25 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-05-22 13:05:25 +0000 |
commit | a9a672d20a34f032e412a83bf21f224d998f3ea9 (patch) | |
tree | d95dc7e1e3ef496e856cff76055ea65ac753cc4a /test/xml/bugtests/text-indent.fo | |
parent | 7c81f7df15ae54e96d99ec11c3f3b940855897dd (diff) | |
download | xmlgraphics-fop-a9a672d20a34f032e412a83bf21f224d998f3ea9.tar.gz xmlgraphics-fop-a9a672d20a34f032e412a83bf21f224d998f3ea9.zip |
put bugtests back in here
still needs catagorisation and cleanup
now all these can be part of the build test target
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194267 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/xml/bugtests/text-indent.fo')
-rw-r--r-- | test/xml/bugtests/text-indent.fo | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/xml/bugtests/text-indent.fo b/test/xml/bugtests/text-indent.fo new file mode 100644 index 000000000..3b8147cc6 --- /dev/null +++ b/test/xml/bugtests/text-indent.fo @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master master-name="simplePM" + page-height="25cm" + page-width="20cm" + margin-top="1cm" + margin-bottom="1cm" + margin-left="1.5cm" + margin-right="1.5cm"> + <fo:region-before extent="2.5cm"/> + <fo:region-body margin-top="3cm" margin-bottom="3cm"/> + <fo:region-after extent="2.5cm"/> + </fo:simple-page-master> + </fo:layout-master-set> + + <fo:page-sequence master-name="simplePM"> + <fo:flow flow-name="xsl-region-body"> + <fo:block text-align="start" space-before.optimum="6pt" text-indent="1in"> + This text is formatted into a left-justified paragraph. + The first line has an indent of 1 inch from the left. + + This text is formatted into a left-justified paragraph. + The first line has an indent of 1 inch from the left. + </fo:block> + + <fo:block space-before.optimum="6pt" text-indent="40%"> + This text is formatted into a left-justified paragraph. + The first line has an indent of 30% from the left. + + This text is formatted into a left-justified paragraph. + The first line has an indent of 30% inch from the left. + </fo:block> + </fo:flow> + </fo:page-sequence> +</fo:root> |