diff options
author | Simon Steiner <ssteiner@apache.org> | 2015-02-06 16:04:34 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2015-02-06 16:04:34 +0000 |
commit | e92f4312cb451a85a2cfc982cb39d0bcb61a92e7 (patch) | |
tree | 3105bdd965a86f64b2871f88cf9ae7a77a09e2e5 /test | |
parent | ad9c2225e0a2edcb300a8bc3fcb384c1608acad4 (diff) | |
download | xmlgraphics-fop-e92f4312cb451a85a2cfc982cb39d0bcb61a92e7.tar.gz xmlgraphics-fop-e92f4312cb451a85a2cfc982cb39d0bcb61a92e7.zip |
FOP-2442: Specifying the expansion of an abbreviation
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1657877 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/java/org/apache/fop/accessibility/fo/abb.fo | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/java/org/apache/fop/accessibility/fo/abb.fo b/test/java/org/apache/fop/accessibility/fo/abb.fo new file mode 100644 index 000000000..4ebc16398 --- /dev/null +++ b/test/java/org/apache/fop/accessibility/fo/abb.fo @@ -0,0 +1,17 @@ +<?xml version="1.0" standalone="no"?> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:fox="http://xmlgraphics.apache.org/fop/extensions"> + <fo:layout-master-set> + <fo:simple-page-master master-name="page" + page-height="220pt" page-width="320pt" margin="10pt"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="page" language="en" country="GB"> + <fo:flow flow-name="xsl-region-body"> + <fo:block>Apache <fo:inline fox:abbreviation ="Formatting Objects Processor">FOP</fo:inline> is a print + formatter driven by XSL + </fo:block> + </fo:flow> + </fo:page-sequence> +</fo:root> |