aboutsummaryrefslogtreecommitdiffstats
path: root/test/fotree
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2008-02-04 22:26:53 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2008-02-04 22:26:53 +0000
commit65d92ff2f5df13eeb3a0f3fd3b183a59351b1593 (patch)
tree0a69430c1dea5e850763cf2d2b9c9a9bd77ee51a /test/fotree
parente913d6ccd991010145542a6049d6d8c7a0df1bb6 (diff)
downloadxmlgraphics-fop-65d92ff2f5df13eeb3a0f3fd3b183a59351b1593.tar.gz
xmlgraphics-fop-65d92ff2f5df13eeb3a0f3fd3b183a59351b1593.zip
Added testcase for Bugzilla 44343
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@618470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/fotree')
-rw-r--r--test/fotree/testcases/font-size-test.fo62
1 files changed, 62 insertions, 0 deletions
diff --git a/test/fotree/testcases/font-size-test.fo b/test/fotree/testcases/font-size-test.fo
new file mode 100644
index 000000000..a302e55e1
--- /dev/null
+++ b/test/fotree/testcases/font-size-test.fo
@@ -0,0 +1,62 @@
+<?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$ -->
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:test="http://xmlgraphics.apache.org/fop/test">
+ <fo:layout-master-set>
+ <fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="2cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
+ <fo:region-body/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="simpleA4" font-size="12pt">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:block>
+ <test:assert property="font-size" expected="12000mpt"/>
+ Test basic inheritance
+ </fo:block>
+ <fo:block font-size="0.8em">
+ <test:assert property="font-size" expected="9600mpt"/>
+ Test relative unit (em).
+ Resolved to absolute value?
+ <fo:block font-size="80%">
+ <test:assert property="font-size" expected="7680mpt"/>
+ Test percentage resolution.
+ Resolved to absolute value?
+ </fo:block>
+ </fo:block>
+ <fo:block font-size="smaller">
+ <test:assert property="font-size" expected="10000mpt"/>
+ Test smaller font-size.
+ <fo:block font-size="larger">
+ <test:assert property="font-size" expected="12000mpt"/>
+ Test larger font-size.
+ </fo:block>
+ </fo:block>
+ <fo:block font-size="80%">
+ <fo:block font-size="smaller">
+ <test:assert property="font-size" expected="8333mpt"/>
+ Test smaller than a percentage font-size.
+ Computation (see org.apache.fop.fo.properties.FontSizePropertyMaker):
+ 12pt * 80% = 9,6pt (base-size)
+ 9,6pt &lt; 12pt, so scale is 10/12
+ 12 * 10/12 = 9,99pt, still &gt; 9,6pt
+ 9,99pt * 10/12 = 8,33pt STOP
+ </fo:block>
+ </fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+</fo:root>