diff options
Diffstat (limited to 'testdata/osxmlparser/lists_domain.osxml')
-rw-r--r-- | testdata/osxmlparser/lists_domain.osxml | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/testdata/osxmlparser/lists_domain.osxml b/testdata/osxmlparser/lists_domain.osxml deleted file mode 100644 index cacb9cc..0000000 --- a/testdata/osxmlparser/lists_domain.osxml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0"?> -<domain name="lists"> - <import rel="domain" src="book.osxml"/> - - <struct name="ul" isa="book.paragraph"> - <!-- Here we solve the problem of parents using the isa - mechanism, because a list may occur whereever a paragraph - may occur. However we do want to override the default field. --> - <field> - <childRef name="item"/> - </field> - </struct> - <struct name="ol" isa="book.paragraph"> - <!-- Here we solve the problem of parents using the isa - mechanism, because a list may occur whereever a paragraph - may occur. However we do want to override the default field. --> - <field> - <childRef name="item"/> - </field> - </struct> - <struct name="item"> - <field> - <childRef name="book.paragaph"/> - </field> - </struct> -</domain> |