diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-12-07 09:40:16 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-12-07 09:40:16 +0000 |
commit | 60cf5396d817f66e1da6ab8ad1b589457be8c41c (patch) | |
tree | 4d14b2993714aeede6c62ccaaf9d3fcd3c0627cd /test | |
parent | 56d2a1386836557650baa9db7f839dd2f78247d7 (diff) | |
download | xmlgraphics-fop-60cf5396d817f66e1da6ab8ad1b589457be8c41c.tar.gz xmlgraphics-fop-60cf5396d817f66e1da6ab8ad1b589457be8c41c.zip |
Bugzilla #37815:
Bugfix: The combination of content-width="scale-to-fit" and content-height="100%" did not work as expected due to a datatype conversion bug.
Submitted by: Tom <tom.at.craddock.id.au>
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@354757 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/external-graphic_bug37815.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/external-graphic_bug37815.xml b/test/layoutengine/standard-testcases/external-graphic_bug37815.xml new file mode 100644 index 000000000..23e368eda --- /dev/null +++ b/test/layoutengine/standard-testcases/external-graphic_bug37815.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2005 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 external-graphics concerning Bugzilla #37815. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg"> + <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" white-space-collapse="true"> + <fo:flow flow-name="xsl-region-body"> + <fo:block> + <fo:external-graphic src="../../resources/images/bgimg72dpi.jpg" width="50%" content-width="scale-to-fit" content-height="100%" border="solid 1pt" background-color="yellow"/>EOG + </fo:block> + <fo:block> + <fo:external-graphic src="../../resources/images/bgimg300dpi.jpg" width="50%" content-width="scale-to-fit" content-height="100%" border="solid 1pt" background-color="yellow"/>EOG + </fo:block> + <fo:block>EOF</fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="320000" xpath="//flow/block[1]/@ipd"/> + <eval expected="160000" xpath="//flow/block[1]/lineArea/viewport/@ipd"/> + <eval expected="162000" xpath="//flow/block[1]/lineArea/viewport/@ipda"/> + <eval expected="160000" xpath="//flow/block[1]/lineArea/viewport/@bpd"/> + <eval expected="162000" xpath="//flow/block[1]/lineArea/viewport/@bpda"/> + <eval expected="160000" xpath="//flow/block[2]/lineArea/viewport/@ipd"/> + <eval expected="162000" xpath="//flow/block[2]/lineArea/viewport/@ipda"/> + <eval expected="46080" xpath="//flow/block[2]/lineArea/viewport/@bpd"/> + <eval expected="48080" xpath="//flow/block[2]/lineArea/viewport/@bpda"/> + </checks> +</testcase> |