diff options
author | Simon Pepping <spepping@apache.org> | 2010-12-09 09:00:24 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2010-12-09 09:00:24 +0000 |
commit | f4086dd275b290d9793b7e401be8f35d7c299938 (patch) | |
tree | c789317962575c77b36faaeeadbd1c1d82d68cdd /test | |
parent | bc3a0d90c10f31bc683582f76d3a7adca3d83b12 (diff) | |
download | xmlgraphics-fop-f4086dd275b290d9793b7e401be8f35d7c299938.tar.gz xmlgraphics-fop-f4086dd275b290d9793b7e401be8f35d7c299938.zip |
Avoid an NPE in InlineStackingLM.applyChanges for Knuth elements with a null position; resolves bug 50276
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1043871 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/knuth_element-null_position.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/knuth_element-null_position.xml b/test/layoutengine/standard-testcases/knuth_element-null_position.xml new file mode 100644 index 000000000..cf964fdf5 --- /dev/null +++ b/test/layoutengine/standard-testcases/knuth_element-null_position.xml @@ -0,0 +1,44 @@ +<?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 check tests that Knuth elements with a null position do +not cause a NPE (in InlineStackingLM.applyChanges)</p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" hyphenate="true" language="de"> + <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><fo:inline padding-left="1cm"><fo:basic-link internal-destination="N1003F">Abluftanlage</fo:basic-link></fo:inline></fo:block> + <fo:block id="N1003F"/> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="Abluftanlage" xpath="//flow/block/lineArea/inlineparent/inlineparent/text/word"/> + </checks> +</testcase> |