1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/crashtests/91332.xsl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<?xml version="1.0" ?> 1.5 +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 1.6 + 1.7 + <xsl:key name="polyList" match="quad" use="@id" /> 1.8 + 1.9 + <xsl:template match="root"> 1.10 + <html><body><xsl:apply-templates select="category" /></body></html> 1.11 + </xsl:template> 1.12 + 1.13 + <xsl:template match="category"> 1.14 + <table><xsl:apply-templates select="list" /></table> 1.15 + </xsl:template> 1.16 + 1.17 + <xsl:template match="list"> 1.18 + <tr><td><xsl:apply-templates select="key('polyList',@item)" /></td></tr> 1.19 + </xsl:template> 1.20 + 1.21 + <xsl:template match="quad"> 1.22 + <b>Please output something!</b> 1.23 + </xsl:template> 1.24 +</xsl:stylesheet>