webdump_tests

Testfiles for webdump
git clone git://git.codemadness.org/webdump_tests
Log | Files | Refs | README

ol_nested.html (241B)


      1 <ol>
      2 <li>one</li>
      3 <li>two
      4 	<ol>
      5 	<li>two. one
      6 		<ol>
      7 		<li>two. one. one</li>
      8 		<li>two. one. two</li>
      9 		</ol>
     10 	</li>
     11 	<li>two. two</li>
     12 	</ol>
     13 </li>
     14 <li>three
     15 	<ol>
     16 	<li>three. one</li>
     17 	<li>three. two</li>
     18 	</ol>
     19 </li>
     20 <li>four</li>
     21 </ol>