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

Side by Side Diff: LayoutTests/fast/xsl/exslt-node-set.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
(Empty)
1 <xsl:stylesheet version="1.0"
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:exslt="http://exslt.org/common"
4 exclude-result-prefixes="exslt">
5
6 <xsl:variable name="x">
7 <y/>
8 </xsl:variable>
9
10 <xsl:template match="doc">
11 <html>
12 <body>
13 <script>if (window.testRunner) testRunner.dumpAsText();</script>
14 <p>Test that exslt:node-set() function is supported.</p>
15 <xsl:apply-templates select="exslt:node-set($x)/*"/>
16 </body>
17 </html>
18 </xsl:template>
19
20 <xsl:template match="y">
21 <p>SUCCESS</p>
22 </xsl:template>
23
24 </xsl:stylesheet>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xsl/exslt-node-set.xml ('k') | LayoutTests/fast/xsl/exslt-node-set-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698