Files
Mozilla/mozilla/content/xsl/tests/book.xsl
nisheeth%netscape.com 02896f6428 Checking in initial tests for the first XSL prototype.
git-svn-id: svn://10.0.0.236/trunk@16904 18797224-902f-48f8-a5cc-f745e15eee43
1998-12-27 08:25:54 +00:00

18 lines
338 B
XML

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template pattern="doc">
<HTML>
<HEAD>
<TITLE>A Document</TITLE>
</HEAD>
<BODY>
<xsl:process-children/>
</BODY>
</HTML>
</xsl:template>
<xsl:template pattern="title">
<H1>
<xsl:process-children/>
</H1>
</xsl:template>
</xsl:stylesheet>