aboutsummaryrefslogtreecommitdiffstats
path: root/test/layoutengine/standard-testcases/block-container_overflow_2.xml
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2008-01-28 10:32:46 +0000
committerJeremias Maerki <jeremias@apache.org>2008-01-28 10:32:46 +0000
commit74b2adc7ebb1c898d17bc5778de412522512d4c8 (patch)
tree3f904cf51e7a20816ba8a50439adab17cb82efd1 /test/layoutengine/standard-testcases/block-container_overflow_2.xml
parent4476c5bed846a37d7ffcc77349eb7256a420f7c5 (diff)
downloadxmlgraphics-fop-74b2adc7ebb1c898d17bc5778de412522512d4c8.tar.gz
xmlgraphics-fop-74b2adc7ebb1c898d17bc5778de412522512d4c8.zip
Improve breaking for block-container and static-content so there are no more "breaking artifacts" (like additional border lines) in the overflowing part of the content anymore. This is done by removing all breaks from the result list prior to constructing the area tree. The presence of breaks simply indicates that there is an overflow.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@615845 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine/standard-testcases/block-container_overflow_2.xml')
-rw-r--r--test/layoutengine/standard-testcases/block-container_overflow_2.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/block-container_overflow_2.xml b/test/layoutengine/standard-testcases/block-container_overflow_2.xml
new file mode 100644
index 000000000..5fe97e7c3
--- /dev/null
+++ b/test/layoutengine/standard-testcases/block-container_overflow_2.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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 behaviour with overflowing content on block-containers.
+ </p>
+ <p>
+ Visual check: If there's a red line between the second and third line, the
+ behaviour is wrong.
+ </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" margin="20pt">
+ <fo:region-body/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="normal" text-align="justify">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:block-container id="bc1" background-color="lightgray" block-progression-dimension="2em">
+ <fo:block id="text" border="solid 1pt red" border-before-width.conditionality="retain">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque hendrerit euismod velit. Nulla facilisi. Etiam et risus at neque ultrices facilisis. Donec lectus est, nonummy quis, rhoncus bibendum, porta at, nisl.</fo:block>
+ </fo:block-container>
+ </fo:flow>
+ </fo:page-sequence>
+ </fo:root>
+ </fo>
+ <checks>
+ <!-- fo:block must not be broken into multiple parts! -->
+ <eval expected="1" xpath="count(//block[@prod-id='text'])"/>
+
+ <!-- The following shows the overflow -->
+ <true expected="24000" xpath="//block[@prod-id='bc1' and @is-viewport-area='true']/@bpd"/>
+ <true expected="60600" xpath="//block[@prod-id='bc1' and @is-reference-area='true']/@bpd"/>
+ </checks>
+</testcase>