OLD | NEW |
1 <?xml version="1.0" encoding="ISO-8859-1"?> | 1 <?xml version="1.0" encoding="ISO-8859-1"?> |
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | 2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
3 <xsl:template match="/"> | 3 <xsl:template match="/"> |
4 <html> | 4 <html> |
5 <body> | 5 <body> |
6 <script> | 6 <script> |
7 if (window.testRunner) | 7 if (window.testRunner) |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 </script> | 9 </script> |
10 <h2>en</h2> | 10 <h2>en</h2> |
(...skipping 20 matching lines...) Expand all Loading... |
31 <xsl:sort select="." data-type="text" order="ascending" lang="fr-CA" /
> | 31 <xsl:sort select="." data-type="text" order="ascending" lang="fr-CA" /
> |
32 <tr> | 32 <tr> |
33 <td><xsl:value-of select="."/></td> | 33 <td><xsl:value-of select="."/></td> |
34 </tr> | 34 </tr> |
35 </xsl:for-each> | 35 </xsl:for-each> |
36 </table> | 36 </table> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
39 </xsl:template> | 39 </xsl:template> |
40 </xsl:stylesheet> | 40 </xsl:stylesheet> |
OLD | NEW |