Author: adelmelle
Date: Mon Feb 4 14:26:53 2008
New Revision: 618470
URL: http://svn.apache.org/viewvc?rev=618470&view=rev
Log:
Added testcase for Bugzilla 44343
Added:
xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo (with props)
Added: xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo?rev=618470&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo (added)
+++ xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo Mon Feb 4
14:26:53 2008
@@ -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 < 12pt, so scale is 10/12
+ 12 * 10/12 = 9,99pt, still > 9,6pt
+ 9,99pt * 10/12 = 8,33pt STOP
+ </fo:block>
+ </fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+</fo:root>
Propchange: xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: xmlgraphics/fop/trunk/test/fotree/testcases/font-size-test.fo
------------------------------------------------------------------------------
svn:keywords = Id
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]