RE: [xsl] Netscape7.1 bug or bad code?

Subject: RE: [xsl] Netscape7.1 bug or bad code?
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Wed, 2 Jul 2003 09:27:04 +0100
if you show the result of your transform that would be much more helpful...I am assuming that the HTML source code is not that.

for fun and giggles try these non-xslt related actions;
- change encoding 
- remove the dubious <meta content="text/javascript" http-equiv="Content-Script-Type"/> tag
- in fact remove everything that has nothing to do with your test

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="/HOGE">
<HTML>
	<HEAD>
	<script type="text/JavaScript">
	<xsl:comment>
	<![CDATA[
	function test(){
		alert("test");
	}
	]]>
	</xsl:comment>
	</script>
	</HEAD>
<BODY>

	<a href="javascript:test();" onClick="test();">test</a>

</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>

gl, jim fuller

> -----Original Message-----
> From: N Y [mailto:yukinz_jp@xxxxxxxxxxx]
> Everything works fine in IE5, and Netscape7.02 
> but does not work in Netscape 7.1(ignore the JavaScript) .
> thanks you for any hint,
> Yuki N
> //==== XSLT source code ===========
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <xsl:stylesheet
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> version="1.0">
> <xsl:output method="html" encoding="UTF-8"/>
> <xsl:template match="/HOGE">
> <HTML>
> 	<HEAD>
> 	<meta http-equiv="Expires" content="0"/>
> 	<meta http-equiv="Pragma" content="no-cache"/>
> 	<meta http-equiv="Content-Type"
> content="test/html;charset=UTF-8"/>
> 	<meta content="text/javascript"
> http-equiv="Content-Script-Type"/>
> 	<TITLE></TITLE>
> 	<script type="text/JavaScript">
> 	<xsl:comment>
> 	<![CDATA[
> 	function javascriptTest(){
> alert("javascriptTest() is working !");
> 	}
> 	
> 	]]>
> 	</xsl:comment>
> 	</script>
> 	</HEAD>
> <BODY>
> <FORM>
> 	<INPUT TYPE="button" VALUE="test"
> onClick="javascriptTest();"></INPUT>
> </FORM>
> </BODY>
> </HTML>
> </xsl:template>
> </xsl:stylesheet>
> 
> //==== HTML source code ===========
> <HTML>
> 	<HEAD>
> 	<meta http-equiv="Expires" content="0"/>
> 	<meta http-equiv="Pragma" content="no-cache"/>
> 	<meta http-equiv="Content-Type"
> content="test/html;charset=UTF-8"/>
> 	<meta content="text/javascript"
> http-equiv="Content-Script-Type"/>
> 	<TITLE></TITLE>
> 	<script type="text/JavaScript">
> 	function javascriptTest(){
> alert("javascriptTest() is working !");
> 	}
> 	
> 	</script>
> 	</HEAD>
> <BODY>
> <FORM>
> 	<INPUT TYPE="button" VALUE="test"
> onClick="javascriptTest();">
> </FORM>
> </BODY>
> </HTML>
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! BB is Broadband by Yahoo!
> http://bb.yahoo.co.jp/
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread