Added test case for lists.
[xmldoc.git] / test / lists.xml
diff --git a/test/lists.xml b/test/lists.xml
new file mode 100644 (file)
index 0000000..d325941
--- /dev/null
@@ -0,0 +1,60 @@
+<?xml version="1.0"?>
+
+<doc style="main.css">
+
+   <book>
+
+   <titlepage>
+      <title>xmldoc lists check</title>
+   </titlepage>
+
+   <chapter>
+      <heading>Check 3 kinds of lists</heading>
+
+      <itemize>
+         <item>
+           The itemize element
+         </item>
+         <item>
+           creates bulleted lists
+           <itemize>
+             <item>
+               and can be nested
+             </item>
+          </itemize>
+         </item>
+      </itemize>
+
+      <enumerate>
+         <item>
+           The enumerate element
+         </item>
+         <item>
+           creates numbered lists
+           <enumerate>
+             <item>
+               and can also be nested
+             </item>
+          </enumerate>
+         </item>
+      </enumerate>
+
+      <description>
+         <item tag='first item'>
+           The description element
+         </item>
+         <item tag='second item'>
+           creates lists with description tags
+           <description>
+             <item tag='nested item'>
+               and can be nested
+             </item>
+          </description>
+         </item>
+      </description>
+
+   </chapter>
+
+   </book>
+
+</doc>