diff options
author | Luis Bernardo <lbernardo@apache.org> | 2013-04-30 23:25:18 +0000 |
---|---|---|
committer | Luis Bernardo <lbernardo@apache.org> | 2013-04-30 23:25:18 +0000 |
commit | 4726c4f941c2179152a3c27e0dc7f62147e825f3 (patch) | |
tree | 4e0411f3e37be3c26fd5e1b04c847aa2ace6ca5e /test | |
parent | ca4802ab78be99b8a2cb4fc617a788c49938f5da (diff) | |
download | xmlgraphics-fop-4726c4f941c2179152a3c27e0dc7f62147e825f3.tar.gz xmlgraphics-fop-4726c4f941c2179152a3c27e0dc7f62147e825f3.zip |
FOP-2245: height attribute on external-graphic with percentage value behaves incorrectly
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1477872 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/external-graphic_height_percentage.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/external-graphic_height_percentage.xml b/test/layoutengine/standard-testcases/external-graphic_height_percentage.xml new file mode 100644 index 000000000..8c917c4e2 --- /dev/null +++ b/test/layoutengine/standard-testcases/external-graphic_height_percentage.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 external-graphics with relative height + </p> + </info> + <variables> + <img>../resources/images/bgimg300dpi.jpg</img> + </variables> + <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>plain external-graphic</fo:block> + <fo:block> + <fo:external-graphic src="##img" height="50%" content-height="scale-to-fit" />EOG + </fo:block> + <fo:block>EOF</fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="360000" xpath="//flow/block[2]/@ipd"/> + <eval expected="46080" xpath="//flow/block[2]/lineArea/viewport/@ipd"/> + <eval expected="46080" xpath="//flow/block[2]/lineArea/viewport/@ipda"/> + <eval expected="46080" xpath="//flow/block[2]/lineArea/viewport/@bpd"/> + <eval expected="46080" xpath="//flow/block[2]/lineArea/viewport/@bpda"/> + </checks> +</testcase> |