Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: LayoutTests/fast/xsl/resources/sort-locale.xsl

Issue 365873002: Implement a part of ProcessingInstruction by using PrivateScript (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WIP: async XHR, rewriting layout tests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xsl/resources/sort-locale.xml ('k') | LayoutTests/fast/xsl/resources/sort-unicode.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698