diff options
author | Karen Lease <klease@apache.org> | 2001-09-21 21:40:09 +0000 |
---|---|---|
committer | Karen Lease <klease@apache.org> | 2001-09-21 21:40:09 +0000 |
commit | 7888b55f400430fed751bd09041a433cd3c0a415 (patch) | |
tree | 5d6e0f6d0c36de824816fa5ba89022c205310f0c /src | |
parent | fabe0f05360e2ed98a256749d1def3d6fad56b5d (diff) | |
download | xmlgraphics-fop-7888b55f400430fed751bd09041a433cd3c0a415.tar.gz xmlgraphics-fop-7888b55f400430fed751bd09041a433cd3c0a415.zip |
Add support for values left and right in the text-align property. Fixes bugs 1723, 1724
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194475 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/codegen/foproperties.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/codegen/foproperties.xml b/src/codegen/foproperties.xml index 0fd8e6cfa..a916e3ea4 100644 --- a/src/codegen/foproperties.xml +++ b/src/codegen/foproperties.xml @@ -1127,10 +1127,12 @@ <name>text-align</name> <inherited>true</inherited> <datatype>Enum</datatype> +<!-- Note: both 'end' and 'right' are mapped to END --> +<!-- both 'start' and 'left' are mapped to START --> <enumeration> <value const="CENTER">center</value> - <value const="END">end</value> - <value const="START">start</value> + <value const="END">end right</value> + <value const="START">start left</value> <value const="JUSTIFY">justify</value> </enumeration> <default>start</default> |