1<?xml version="1.0" encoding="iso-8859-1" ?>
2<xsl:stylesheet version="1.0"
3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
5        xmlns:xhtml="http://www.w3.org/1999/xhtml"   >
6   <xsl:output method="xml" indent="yes" encoding="iso-8859-1" />
7   <xsl:template match="/">
8      <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
9      <windows>
10        <vbox flex="1">
11                   <xsl:apply-templates />
12            </vbox>
13      </windows>
14   </xsl:template>
15   <xsl:template match="a">
16         <vbox>
17                <xhtml:div>Hello</xhtml:div>
18                <xsl:element name="xhtml:div">
19                        foo
20                </xsl:element>
21         </vbox>
22   </xsl:template>
23</xsl:stylesheet>
24
25