transformToFragment with a node
"Alex Iskold" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout.xslt |
|---|---|
| Organization | adaptiveblue |
| Message-ID | <[email protected]> |
Hi all,
I am trying to do the following:
JavaScript
var elements = xml.documentElement.childNodes;
for ( var i = start; i <= end ; i++ ) {
var fragment = xsltProcessor.transformToFragment( elements[i],
doc );
list.appendChild( fragment );
}
XSL
<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">
<xsl:include href="common.xsl"/>
<xsl:output method="xml"/>
<xsl:template match="/">
<vbox>
<xsl:value-of select="name(.)"/>
</vbox>
</xsl>
Basically, I am looping through and applying stylesheet to invididual nodes.
But it does not seem to match, instead I get text clumped together in
return.
I am declaring the XUL namespace so I am not sure what is wrong.
Thanks in advance for your help,
Alex