diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2007-02-22 19:07:15 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2007-02-22 19:07:15 +0000 |
commit | e01480e8ec9872d671790adef579fc74e0e37acf (patch) | |
tree | 0b74a3f633434ed89efaa2c132678c5fb9de36e5 /test/layoutengine | |
parent | 534bb66af32e43b7a33567b1fb395255ab3d287b (diff) | |
download | xmlgraphics-fop-e01480e8ec9872d671790adef579fc74e0e37acf.tar.gz xmlgraphics-fop-e01480e8ec9872d671790adef579fc74e0e37acf.zip |
Bugzilla 41652:
Preserved linefeeds now generate an empty line.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@510626 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine')
-rw-r--r-- | test/layoutengine/standard-testcases/linefeed-treatment_preserve.xml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/linefeed-treatment_preserve.xml b/test/layoutengine/standard-testcases/linefeed-treatment_preserve.xml new file mode 100644 index 000000000..2306a370c --- /dev/null +++ b/test/layoutengine/standard-testcases/linefeed-treatment_preserve.xml @@ -0,0 +1,65 @@ +<?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 linefeed-preservation. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master page-width="21cm" page-height="29.7cm" master-name="spm0"> + <fo:region-body region-name="region-body" margin-bottom="1cm" margin-top="1.5cm"/> + <fo:region-before region-name="header" precedence="false" extent="4cm"/> + <fo:region-after region-name="footer" extent="1cm"/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="spm0"> + <fo:flow flow-name="region-body"> + <fo:block hyphenate="false" font="8pt monospace" + text-align="start" wrap-option="no-wrap" + white-space="pre" line-stacking-strategy="font-height" + background-color="yellow">First line yellow background +<fo:inline background-color="red">Second line red background +Third line red background</fo:inline> +<fo:inline background-color="pink"> +Fifth line pink background; the above line has one preserved space character.</fo:inline> +Sixth line yellow background</fo:block> + <fo:block linefeed-treatment="preserve" background-color="blue" + text-align="start" font="8pt Courier" color="yellow">1 + 2<fo:inline background-color="orange"> + 3 + 4 + 5 + 6 One line, surrounded by some linefeeds; orange line in blue block + 7 + 8 + 9 + 10</fo:inline> + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="6" xpath="count(//block[1]/lineArea)" /> + <eval expected="10" xpath="count(//block[2]/lineArea)" /> + </checks> +</testcase> |