mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* tests/namespaces/Makefile.am: added extra2.err, tst5.xml, tst5.xsl and tst.out to EXTRA_DIST
25 lines
810 B
XML
25 lines
810 B
XML
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml" >
|
|
<xsl:output method="xml" indent="yes" encoding="iso-8859-1" />
|
|
<xsl:template match="/">
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<windows>
|
|
<vbox flex="1">
|
|
<xsl:apply-templates />
|
|
</vbox>
|
|
</windows>
|
|
</xsl:template>
|
|
<xsl:template match="a">
|
|
<vbox>
|
|
<xhtml:div>Hello</xhtml:div>
|
|
<xsl:element name="xhtml:div">
|
|
foo
|
|
</xsl:element>
|
|
</vbox>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|