
richter at apache
Jan 22, 2004, 1:18 PM
Post #1 of 1
(613 views)
Permalink
|
|
cvs commit: embperl/test/cmp nesting2.htm nesting.htm
|
|
richter 2004/01/22 12:18:50 Modified: . MANIFEST test/cmp nesting.htm Added: test/cmp nesting2.htm Log: tests for nesting Revision Changes Path 1.83 +1 -0 embperl/MANIFEST Index: MANIFEST =================================================================== RCS file: /home/cvs/embperl/MANIFEST,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- MANIFEST 12 Jun 2003 20:34:21 -0000 1.82 +++ MANIFEST 22 Jan 2004 20:18:50 -0000 1.83 @@ -297,6 +297,7 @@ test/cmp/mailformto.htm test/cmp/mix.htm test/cmp/nesting.htm +test/cmp/nesting2.htm test/cmp/nochdir.htm test/cmp/noerrpage.htm test/cmp/nooutput.htm 1.4 +52 -19 embperl/test/cmp/nesting.htm Index: nesting.htm =================================================================== RCS file: /home/cvs/embperl/test/cmp/nesting.htm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- nesting.htm 5 Oct 1999 06:02:16 -0000 1.3 +++ nesting.htm 22 Jan 2004 20:18:50 -0000 1.4 @@ -24,25 +24,58 @@ </tr> </table> +<!-- [ + + ] --> + +<dl> + <dl> + <DD>0 </dl> + <dl> + <DD>1 </dl> + <dl> + <DD>2 </dl> + <dl> + <DD>3 </dl> + <dl> + <DD>4 </dl> + <dl> + <DD>5 </dl> + <dl> + <DD>6 </dl> + <dl> + <DD>7 </dl> + <dl> + <DD>8 </dl> + <dl> + <DD>9 </dl> + </dl> + + +<!-- print OUT --> + +<dl> + <dl> + <DD>0</dl> + <dl> + <DD>1</dl> + <dl> + <DD>2</dl> + <dl> + <DD>3</dl> + <dl> + <DD>4</dl> + <dl> + <DD>5</dl> + <dl> + <DD>6</dl> + <dl> + <DD>7</dl> + <dl> + <DD>8</dl> + <dl> + <DD>9</dl> + </dl> + + -<table> - <tr> -<td>aa</td><td>11</td> -</tr> - - <tr> -<td>bb</td><td>22</td> -</tr> - - <tr> -<td>cc</td><td>33</td> -</tr> - - <tr> -<td>dd</td><td>44</td> -</tr> -</table> -<td>aa</td><td>11</td> </body> </html> - 1.1 embperl/test/cmp/nesting2.htm Index: nesting2.htm =================================================================== <html> <head> <title>Tests for Embperl - Nesting of html and meta commands 2</title> </head> <body> <table> <tr> <td>aa</td><td>11</td> </tr> <tr> <td>bb</td><td>22</td> </tr> <tr> <td>cc</td><td>33</td> </tr> <tr> <td>dd</td><td>44</td> </tr> </table> === dl.1 <dl><dt>aa</dt><dd><ul><li>a</li><li>b</li></ul></dd><dt>bb</dt><dd><ul><li>a</li><li>b</li></ul></dd><dt>cc</dt><dd><ul><li>a</li><li>b</li></ul></dd><dt>dd</dt><dd><ul><li>a</li><li>b</li></ul></dd></dl> === dl.2 <dl><dt>aa</dt><dd><ul>ab</ul></dd><dt>bb</dt><dd><ul>ab</ul></dd><dt>cc</dt><dd><ul>ab</ul></dd><dt>dd</dt><dd><ul>ab</ul></dd></dl> === foreach.1 1:aa -> a 1:aa -> b 2:bb -> a 2:bb -> b 3:cc -> a 3:cc -> b 4:dd -> a 4:dd -> b . === foreach.2 1:aa -> a 2:aa -> b 3:bb -> a 4:bb -> b 5:cc -> a 6:cc -> b 7:dd -> a 8:dd -> b --------------------------------------------------------------------- To unsubscribe, e-mail: embperl-cvs-unsubscribe [at] perl For additional commands, e-mail: embperl-cvs-help [at] perl
|