diff options
author | Simon Steiner <ssteiner@apache.org> | 2018-03-19 08:49:57 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2018-03-19 08:49:57 +0000 |
commit | 88751079b006c5e7ce427485dc50bf8a6217c903 (patch) | |
tree | fe441fcd6c845aa90c5a0996b58be04581b49f5b /fop/test/layoutengine | |
parent | a3a3995f8b6f271e57bcd87e2a03f45da2f04c16 (diff) | |
download | xmlgraphics-fop-88751079b006c5e7ce427485dc50bf8a6217c903.tar.gz xmlgraphics-fop-88751079b006c5e7ce427485dc50bf8a6217c903.zip |
FOP-1969: Support for unicode Surrogate pairs
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1827168 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop/test/layoutengine')
-rw-r--r-- | fop/test/layoutengine/hyphenation-testcases/block_hyphenation_kerning_non_bmp.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/fop/test/layoutengine/hyphenation-testcases/block_hyphenation_kerning_non_bmp.xml b/fop/test/layoutengine/hyphenation-testcases/block_hyphenation_kerning_non_bmp.xml new file mode 100644 index 000000000..d4734600a --- /dev/null +++ b/fop/test/layoutengine/hyphenation-testcases/block_hyphenation_kerning_non_bmp.xml @@ -0,0 +1,57 @@ +<?xml version="1.1" 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> + Checks hyphenation in combination with kerning. + </p> + </info> + <cfg> + <base14kerning>true</base14kerning> + </cfg> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" language="en" hyphenate="true" font-family="Aegean600"> + <fo:layout-master-set> + <fo:simple-page-master master-name="simple" page-height="5in" page-width="5in"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="simple"> + <fo:flow flow-name="xsl-region-body"> + <fo:block font-size="20pt" line-height="1.0" text-align="justify" text-align-last="justify" background-color="lightgray" start-indent="10pt" end-indent="10pt" border="solid 1pt"> + hyphenation𐌆𐌇𐌋𐌌 regression advantage foundation𐌇𐌈𐌉𐌊 𐌋𐌌 vandavanda + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="1" xpath="count(//pageViewport)"/> + <eval expected="en" xpath="/areaTree/pageSequence/@xml:lang"/> + + <eval expected="47702" xpath="//flow/block[1]/lineArea[1]/text[1]/@twsadjust"/> + <eval expected="36968" xpath="//flow/block[1]/lineArea[2]/text[1]/@twsadjust"/> + + <eval expected="advan-" xpath="//flow/block[1]/lineArea[1]/text[1]/word[3]"/> + <eval expected="0 0 0 -500 0 0" xpath="//flow/block[1]/lineArea[1]/text[1]/word[3]/@letter-adjust"/> + <eval expected="tage" xpath="//flow/block[1]/lineArea[2]/text[1]/word[1]"/> + <eval expected="vandavanda" xpath="//flow/block[1]/lineArea[2]/text[1]/word[4]"/> + <eval expected="0 -500 0 0 0 -400 -500 0 0 0" xpath="//flow/block[1]/lineArea[2]/text[1]/word[4]/@letter-adjust"/> + </checks> +</testcase> |