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

Side by Side Diff: LayoutTests/fast/xsl/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
« no previous file with comments | « LayoutTests/fast/xsl/sort-locale.xml ('k') | LayoutTests/fast/xsl/sort-locale-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3 <xsl:template match="/">
4 <html>
5 <body>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 </script>
10 <h2>en</h2>
11 <table border="1">
12 <xsl:for-each select="list/item">
13 <xsl:sort select="." data-type="text" order="ascending" lang="en" />
14 <tr>
15 <td><xsl:value-of select="."/></td>
16 </tr>
17 </xsl:for-each>
18 </table>
19 <h2>fr</h2>
20 <table border="1">
21 <xsl:for-each select="list/item">
22 <xsl:sort select="." data-type="text" order="ascending" lang="fr" />
23 <tr>
24 <td><xsl:value-of select="."/></td>
25 </tr>
26 </xsl:for-each>
27 </table>
28 <h2>fr-CA</h2>
29 <table border="1">
30 <xsl:for-each select="list/item">
31 <xsl:sort select="." data-type="text" order="ascending" lang="fr-CA" / >
32 <tr>
33 <td><xsl:value-of select="."/></td>
34 </tr>
35 </xsl:for-each>
36 </table>
37 </body>
38 </html>
39 </xsl:template>
40 </xsl:stylesheet>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xsl/sort-locale.xml ('k') | LayoutTests/fast/xsl/sort-locale-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698