diff options
author | Jeremias Maerki <jeremias@apache.org> | 2008-01-25 12:14:52 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2008-01-25 12:14:52 +0000 |
commit | ab66977cddab31240ab6f132996939bddd243245 (patch) | |
tree | 03674771027ce29713b1db7b9613aadf4696ed1e /test/fotree | |
parent | efee9986bd606e232cd547f431d39467dfd8a5e6 (diff) | |
download | xmlgraphics-fop-ab66977cddab31240ab6f132996939bddd243245.tar.gz xmlgraphics-fop-ab66977cddab31240ab6f132996939bddd243245.zip |
Improved error tolerance: an enum property value with leading or trailing spaces is still recognized. Example: content-width="scale-to-fit "
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@615197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/fotree')
-rw-r--r-- | test/fotree/testcases/enum-trim.fo | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/fotree/testcases/enum-trim.fo b/test/fotree/testcases/enum-trim.fo new file mode 100644 index 000000000..001243d80 --- /dev/null +++ b/test/fotree/testcases/enum-trim.fo @@ -0,0 +1,37 @@ +<?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="A4" page-height="29.7cm" page-width="21cm" margin="2cm"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="A4"> + <fo:flow flow-name="xsl-region-body"> + <fo:block> + <!-- the space character after "scale-to-fit" is intentional!!! --> + <fo:external-graphic src="test/resources/images/box1.png" width="4cm" + content-width="scale-to-fit "> + <test:assert property="content-width" expected="SCALE_TO_FIT"/> + </fo:external-graphic> + Test font-family parsing + </fo:block> + </fo:flow> + </fo:page-sequence> +</fo:root> |