diff options
author | Simon Pepping <spepping@apache.org> | 2005-12-22 10:34:19 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2005-12-22 10:34:19 +0000 |
commit | eb2dae3ff914bad79818905ed699e18124dfd5c5 (patch) | |
tree | f2ec90331b5b869f1ad864a2e750179dadd8c84e /test/layoutengine/standard-testcases | |
parent | e532adfb31e3745df40a861d7b1ffc916fd4cab2 (diff) | |
download | xmlgraphics-fop-eb2dae3ff914bad79818905ed699e18124dfd5c5.tar.gz xmlgraphics-fop-eb2dae3ff914bad79818905ed699e18124dfd5c5.zip |
Add a letterspace in InlineKnuthSequence
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@358552 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine/standard-testcases')
-rw-r--r-- | test/layoutengine/standard-testcases/inline_letter-spacing_2.xml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/inline_letter-spacing_2.xml b/test/layoutengine/standard-testcases/inline_letter-spacing_2.xml new file mode 100644 index 000000000..27d5f245d --- /dev/null +++ b/test/layoutengine/standard-testcases/inline_letter-spacing_2.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<testcase> + <info> + <p> + This test checks whether letterspacing is applied between across + fo:inline elements in the same word. + </p> + </info> + <fo> + <fo:root + xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:svg="http://www.w3.org/2000/svg"> + <fo:layout-master-set> + <fo:simple-page-master master-name="simpleA4" + page-height="5cm" page-width="15cm" + margin-top="2cm" margin-bottom="2cm" + margin-left="2cm" margin-right="2cm"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + + <fo:page-sequence master-reference="simpleA4"> + <fo:flow flow-name="xsl-region-body"> + <fo:block language="en" country="US"> + <fo:inline letter-spacing="2pt"><fo:inline>nor</fo:inline><fo:inline>mal</fo:inline></fo:inline> + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="46672" +xpath="//flow/block[1]/lineArea[1]/inlineparent[1]/@ipd" desc="IPD of +containing inline area"/> + <eval expected="23340" +xpath="//flow/block[1]/lineArea[1]/inlineparent[1]/inlineparent[1]/@ipd" +desc="IPD of first contained inline area"/> + <eval expected="23340" +xpath="//flow/block[1]/lineArea[1]/inlineparent[1]/inlineparent[1]/text/@ipd" +desc="IPD of corresponding text area"/> + </checks> +</testcase> |