aboutsummaryrefslogtreecommitdiffstats
path: root/test/layoutengine
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2006-03-24 14:32:19 +0000
committerJeremias Maerki <jeremias@apache.org>2006-03-24 14:32:19 +0000
commit06631968feacd14376f5e38e3b40957a68b09ec4 (patch)
tree7f265eaf75028472a0d6e57e04d62ddeb78acca4 /test/layoutengine
parent9cb8e3b0f34379dc67101f20fe52966d73763b48 (diff)
downloadxmlgraphics-fop-06631968feacd14376f5e38e3b40957a68b09ec4.tar.gz
xmlgraphics-fop-06631968feacd14376f5e38e3b40957a68b09ec4.zip
Confirming that last-line-end-indent works as specified in XSL 1.0.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@388536 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine')
-rw-r--r--test/layoutengine/standard-testcases/block_last-line-end-indent.xml94
1 files changed, 94 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/block_last-line-end-indent.xml b/test/layoutengine/standard-testcases/block_last-line-end-indent.xml
new file mode 100644
index 000000000..9ea768b1b
--- /dev/null
+++ b/test/layoutengine/standard-testcases/block_last-line-end-indent.xml
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright 2006 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<testcase>
+ <info>
+ <p>
+ This test checks the last-line-end-indent property.
+ </p>
+ </info>
+ <fo>
+ <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
+ <fo:layout-master-set>
+ <fo:simple-page-master master-name="normal" page-width="5in" page-height="5in">
+ <fo:region-body/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="normal">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:block last-line-end-indent="20pt" text-align="end" id="end">
+In olden times when wishing still helped one, there lived a king whose daughters
+were all beautiful; and the youngest was so beautiful that the sun itself, which
+has seen so much, was astonished whenever it shone in her face.
+ </fo:block>
+ <fo:block last-line-end-indent="20pt" text-align="justify" text-align-last="justify" id="justify">
+In olden times when wishing still helped one, there lived a king whose daughters
+were all beautiful; and the youngest was so beautiful that the sun itself, which
+has seen so much, was astonished whenever it shone in her face.
+ </fo:block>
+ <fo:block last-line-end-indent="50%" text-align="justify" text-align-last="justify" id="justify50">
+In olden times when wishing still helped one, there lived a king whose daughters
+were all beautiful; and the youngest was so beautiful that the sun itself, which
+has seen so much, was astonished whenever it shone in her face.
+ </fo:block>
+ <fo:block last-line-end-indent="50%" text-align="center" id="center">
+In olden times when wishing still helped one, there lived a king whose daughters
+were all beautiful; and the youngest was so beautiful that the sun itself, which
+has seen so much, was astonished whenever it shone in her face.
+ </fo:block>
+ <fo:block last-line-end-indent="20pt" text-align="justify" text-align-last="justify" id="nested">
+This is just for testing purpose and this line will be indented.
+
+ <fo:block>This is the nested block.</fo:block>
+
+The text following the nested block should be indented as well. The text following
+the nested block should be indented as well.
+ </fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+ </fo:root>
+ </fo>
+ <checks>
+ <eval expected="360000" xpath="//block[@prod-id='end']/lineArea[1]/@start-indent + //block[@prod-id='end']/lineArea[1]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='end']/lineArea[2]/@start-indent + //block[@prod-id='end']/lineArea[2]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='end']/lineArea[3]/@start-indent + //block[@prod-id='end']/lineArea[3]/text/@ipd"/>
+ <eval expected="340000" xpath="//block[@prod-id='end']/lineArea[4]/@start-indent + //block[@prod-id='end']/lineArea[4]/text/@ipd"/>
+ <!-- 360000 - 20000 = 340000 -->
+
+ <eval expected="360000" xpath="//block[@prod-id='justify']/lineArea[1]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='justify']/lineArea[2]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='justify']/lineArea[3]/text/@ipd"/>
+ <eval expected="340000" xpath="//block[@prod-id='justify']/lineArea[4]/text/@ipd"/>
+
+ <eval expected="360000" xpath="//block[@prod-id='justify50']/lineArea[1]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='justify50']/lineArea[2]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='justify50']/lineArea[3]/text/@ipd"/>
+ <eval expected="180000" xpath="//block[@prod-id='justify50']/lineArea[4]/text/@ipd"/>
+
+ <eval expected="360000" xpath="(2 * //block[@prod-id='center']/lineArea[1]/@start-indent) + //block[@prod-id='center']/lineArea[1]/text/@ipd"/>
+ <eval expected="360000" xpath="(2 * //block[@prod-id='center']/lineArea[2]/@start-indent) + //block[@prod-id='center']/lineArea[2]/text/@ipd"/>
+ <eval expected="360000" xpath="(2 * //block[@prod-id='center']/lineArea[3]/@start-indent) + //block[@prod-id='center']/lineArea[3]/text/@ipd"/>
+ <eval expected="360000" xpath="(2 * //block[@prod-id='center']/lineArea[4]/@start-indent) + //block[@prod-id='center']/lineArea[4]/text/@ipd"/>
+ <eval expected="180000" xpath="(2 * //block[@prod-id='center']/lineArea[5]/@start-indent) + //block[@prod-id='center']/lineArea[5]/text/@ipd"/>
+
+ <!-- 7.15.3, XSL 1.0: this block is end-indented because its following sibling is a block and not a line. This is in contrast to the specified behaviour of text-indent. -->
+ <eval expected="340000" xpath="//block[@prod-id='nested']/lineArea[1]/text/@ipd"/>
+ <eval expected="340000" xpath="//block[@prod-id='nested']/block[1]/lineArea[1]/text/@ipd"/>
+ <eval expected="360000" xpath="//block[@prod-id='nested']/lineArea[2]/text/@ipd"/>
+ <eval expected="340000" xpath="//block[@prod-id='nested']/lineArea[3]/text/@ipd"/>
+ </checks>
+</testcase>