Re: XSLT no longer display the transformed elements
Martin Honnen <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Liberty Development |
| Message-ID | <dk80sq$msn2__35369.5417791188$1130858731$gmane$org@ripley.aoltw.net> |
Note cross post and followup-to the xslt group. Michael Vincent van Rantwijk wrote: > I installed SeaMonkey build 2005103110 to fix another bug but now XSLT > no longer displays the transformed documents, but all elements are > inserted (I checked this with The DOM Inspector) so I presume that > either something has changed or I ran into another bug. What exactly are you doing, how are you using XSLT? Do you have an XML document with a processing instruction <?xml-stylesheet type="text/xsl" href="stylesheet.xml"?> referencing a stylesheet and you are loading the XML in a browser window? Or do you use the XSLTProcessor with script? And if elements are there in the DOM inspector but do not render as you expect them to do then if for instance you want to create XHTML elements make sure they have the proper element name (e.g. p) _and_ the proper namespace (e.g. http://www.w3.org/1999/xhtml), if you want to create SVG elements make sure they have the proper element name (e.g. svg) _and_ the proper namespace (e.g. http://www.w3.org/2000/svg). But I am guessing,, how about providing some details on what you are trying exactly when something fails to render? -- Martin Honnen http://JavaScript.FAQTs.com/