https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7bea3899a76701de40491d0709e52b1f75ad1c1a authored by ffxbld on 06 November 2014, 19:44:31 UTC
Added FIREFOX_33_1_RELEASE FIREFOX_33_1_BUILD3 tag(s) for changeset a4d51da32fe7. DONTBUILD CLOSED TREE a=release
Tip revision: 7bea389
111994.xsl
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:template match="root">
    <html><body><xsl:apply-templates select="item" /></body></html>
  </xsl:template>
  <xsl:template match="item">
    <img>
      <xsl:attribute name="src">
        <xsl:value-of select="@name" />
      </xsl:attribute>
    </img>
  </xsl:template>
</xsl:stylesheet>
back to top