diff options
author | Karen Lease <klease@apache.org> | 2001-04-11 21:39:02 +0000 |
---|---|---|
committer | Karen Lease <klease@apache.org> | 2001-04-11 21:39:02 +0000 |
commit | d7d50983f8c96a0a0ecaae67a5adebef9e169903 (patch) | |
tree | c27d843975d84a73fee3f5695392311262faa571 /src | |
parent | b3487d0360de3e4f6e4bd45b9e16e61c80720f81 (diff) | |
download | xmlgraphics-fop-d7d50983f8c96a0a0ecaae67a5adebef9e169903.tar.gz xmlgraphics-fop-d7d50983f8c96a0a0ecaae67a5adebef9e169903.zip |
new properties for table borders
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194199 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/codegen/foproperties.xml | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/src/codegen/foproperties.xml b/src/codegen/foproperties.xml index c2dc32d62..ba1ea9a43 100644 --- a/src/codegen/foproperties.xml +++ b/src/codegen/foproperties.xml @@ -1280,7 +1280,7 @@ <datatype>LengthRange</datatype> <corresponding use-if-specified="true"> <propval><wmrel2abs dir="BLOCKPROGDIM"/></propval> - </corresponding>> + </corresponding> <compound> <subproperty set-by-shorthand="true"> <name>minimum</name> @@ -1311,7 +1311,58 @@ </subproperty> </compound> </property> + + <property> + <name>border-separation</name> + <inherited>true</inherited> + <datatype>LengthPair</datatype> + <compound> + <subproperty set-by-shorthand="true"> + <name>block-progression-direction</name> + <datatype>Length</datatype> + <default>0pt</default> + </subproperty> + <subproperty set-by-shorthand="true"> + <name>inline-progression-direction</name> + <datatype>Length</datatype> + <default>0pt</default> + </subproperty> + </compound> + </property> + + <property> + <name>border-collapse</name> + <inherited>true</inherited> + <datatype>Enum</datatype> + <default>collapse</default> + <enumeration> + <value const="SEPARATE">separate</value> + <value const="COLLAPSE">collapse</value> + </enumeration> + </property> + <property> + <name>display-align</name> + <inherited>true</inherited> + <datatype>Enum</datatype> + <enumeration> + <value const="BEFORE">before</value> + <value const="AFTER">after</value> + <value const="CENTER">center</value> + <value const="AUTO">auto</value> + </enumeration> + <default>auto</default> + </property> + <property> + <name>relative-align</name> + <inherited>true</inherited> + <datatype>Enum</datatype> + <enumeration> + <value const="BEFORE">before</value> + <value const="BASELINE">after</value> + </enumeration> + <default>before</default> + </property> </generic-property-list> </property-list> |