XML issue in netscape.
hai
i have written the following code. But it is not working in Netscape. Please someone guide me to rectify this problem.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/TR/REC-html40">
<xsl:output method="html"/>
<xsl:template match="/">
<HTML>
<BODY>
<BUTTON id=btn style='width:100;height:100'>
</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>
when i run the xml file using the above xsl code, in IE it works fine. But in netscape the button ne not created as per the dimension specifies. PLease help me in resolving this issue.
[781 byte] By [
gjiyer] at [2007-11-19 6:21:55]

# 1 Re: XML issue in netscape.
This is a little curious, this problem also appears in mozilla, it seems it's ignoring width and height properties, but not other style properties, when displaying the page through a browser based XSL transfrom, but not when viewing page as html generated by an external xsl transform.
You might want to report this as a bug at http://channels.netscape.com/ns/browsers/feedback.jsp or https://bugzilla.mozilla.org/ .
As for a solution, the only workaround I can suggest is to use Serverside XSL transformation rather than client side, which I would probably suggest to you in any case, I really can't say enough bad things about browserbased XSL transforms.
khp at 2007-11-10 3:27:37 >
