Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / document-function.xsl
blob5630de648d88e7243337551a3c843136c216f442
1 <?xml version="1.0"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5 <xsl:template match="/">
6 <html>
7 <xsl:apply-templates/>
8 <xsl:apply-templates select="document('resources/document-function-source.xml')/doc"/>
9 </html>
10 </xsl:template>
12 <xsl:template match="para">
13 <p><xsl:value-of select="."/></p>
14 </xsl:template>
15 </xsl:stylesheet>