|
Your XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<?startSampleFile ?>
<!-- xq178.xsl: converts xq181.xml into xq183.txt -->
<xsl:template match="para">
Color: <xsl:value-of select="@color"/>
<!-- List the attribute names and values. -->
<xsl:for-each select="@*">
attribute name: <xsl:value-of select="name()"/>
attribute value: <xsl:value-of select="."/>
</xsl:for-each>
</xsl:template>
<?endSampleFile ?>
</xsl:stylesheet>
does not render output in Fire Fox, it does work in IE6, is this a problem with FF cycling through the nodes? or the XSL?
thanks!
|