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

Side by Side Diff: LayoutTests/fast/xsl/resources/xslt-relative-path.xml

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"?> 1 <?xml version="1.0"?>
2 <?xml-stylesheet type="text/xsl" href="#stylesheet"?> 2 <?xml-stylesheet type="text/xsl" href="#stylesheet"?>
3 <!DOCTYPE doc [ 3 <!DOCTYPE doc [
4 <!ELEMENT xsl:stylesheet ANY> 4 <!ELEMENT xsl:stylesheet ANY>
5 <!ATTLIST xsl:stylesheet id ID #REQUIRED> 5 <!ATTLIST xsl:stylesheet id ID #REQUIRED>
6 ]> 6 ]>
7 <doc> 7 <doc>
8 8
9 <xsl:stylesheet version="1.0" id="stylesheet" xmlns:xsl="http://www.w3.org/199 9/XSL/Transform"> 9 <xsl:stylesheet version="1.0" id="stylesheet" xmlns:xsl="http://www.w3.org/199 9/XSL/Transform">
10 <xsl:output method="html"/> 10 <xsl:output method="html"/>
(...skipping 15 matching lines...) Expand all
26 <xsl:value-of select="document($method1)/foo/bar"/></p> 26 <xsl:value-of select="document($method1)/foo/bar"/></p>
27 <p>using document('<xsl:value-of select="$method2"/>'): 27 <p>using document('<xsl:value-of select="$method2"/>'):
28 <xsl:value-of select="document($method2)/foo/bar"/></p> 28 <xsl:value-of select="document($method2)/foo/bar"/></p>
29 29
30 </body> 30 </body>
31 </html> 31 </html>
32 </xsl:template> 32 </xsl:template>
33 33
34 </xsl:stylesheet> 34 </xsl:stylesheet>
35 </doc> 35 </doc>
OLDNEW
« no previous file with comments | « LayoutTests/fast/xsl/resources/xslt-recursion.xml ('k') | LayoutTests/fast/xsl/resources/xslt-second-level-import.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698