gecko-dev/dom/tests/reftest/bug1389406-01.xsl
Peter Van der Beken ec6e052af1 Bug 1389406 - XSLT — nested xsl:apply-imports doesn't work in some cases. r=erahm.
Use separate classes for parameter and variable maps, and refcount the class for parameter
maps, since a parameter map can be stored in multiple places.

--HG--
extra : rebase_source : 56cc22349a8e03925e3d7446528dd70456117f52
2017-09-12 12:45:24 +02:00

16 lines
338 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:import href="bug1389406-02.xsl"/>
<xsl:template mode="title" match="*">
<xsl:value-of select="."/>
<xsl:apply-imports />
</xsl:template>
<xsl:template match="text()|@*"></xsl:template>
</xsl:stylesheet>