Added test case for lists.
[xmldoc.git] / test / lists.html.exp
diff --git a/test/lists.html.exp b/test/lists.html.exp
new file mode 100644 (file)
index 0000000..03fb918
--- /dev/null
@@ -0,0 +1,148 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <meta charset="utf-8"/>
+    <link rel="stylesheet" type="text/css" href="main.css"/>
+    <title>xmldoc lists check</title>
+    <style type="text/css">
+      .center
+      {
+         text-align : center ;
+      }
+      table.docinfo
+      {
+         margin-left  : 10% ;
+         margin-right : 10% ;
+         border-style : solid ;
+      }
+      th
+      {
+         border-style : solid ;
+         border-width : thin ;
+      }
+      h3.toc
+      {
+         margin-left : 2em ;
+      }
+      pre.example
+      {
+         border : solid ;
+         padding-bottom : 1em ;
+      }
+      span.red
+      {
+         color : red ;
+      }
+      span.green
+      {
+         color : green ;
+      }
+      span.blue
+      {
+         color : blue ;
+      }
+      span.cyan
+      {
+         color : cyan ;
+      }
+      span.magenta
+      {
+         color : magenta ;
+      }
+      span.yellow
+      {
+         color : yellow ;
+      }
+      span.orange
+      {
+         color : orange ;
+      }
+      span.violet
+      {
+         color : violet ;
+      }
+      span.purple
+      {
+         color : purple ;
+      }
+      span.brown
+      {
+         color : brown ;
+      }
+      span.pink
+      {
+         color : pink ;
+      }
+      span.olive
+      {
+         color : olive ;
+      }
+      span.black
+      {
+         color : black ;
+      }
+      span.darkgray
+      {
+         color : darkgray ;
+      }
+      span.gray
+      {
+         color : gray ;
+      }
+      span.lightgray
+      {
+         color : lightgray ;
+      }
+      span.white
+      {
+         color : white ;
+      }
+   </style>
+  </head>
+  <body>
+
+   <div class="titlepage">
+      <h1 class="titlepage">xmldoc lists check</h1>
+   </div>
+
+   <h1>1  <a id="CH1"/>Check 3 kinds of lists</h1><ul>
+         <li>
+           The itemize element
+         </li>
+         <li>
+           creates bulleted lists
+           <ul>
+             <li>
+               and can be nested
+             </li>
+          </ul>
+         </li>
+      </ul><ol>
+         <li>
+           The enumerate element
+         </li>
+         <li>
+           creates numbered lists
+           <ol>
+             <li>
+               and can also be nested
+             </li>
+          </ol>
+         </li>
+      </ol><dl>
+         <dt>first item</dt><dd>
+           The description element
+         </dd>
+         <dt>second item</dt><dd>
+           creates lists with description tags
+           <dl>
+             <dt>nested item</dt><dd>
+               and can be nested
+             </dd>
+          </dl>
+         </dd>
+      </dl>
+
+   <hr/></body>
+</html>