https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d28746c4982da3904ab8b0725843c2a0ecd4bc62 authored by Rail Aliiev on 11 May 2015, 19:32:15 UTC
tagging B2G_1_4 for mergeday. r=a=mergeday CLOSED TREE DONTBUILD
Tip revision: d28746c
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