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

Subject: Re: [xsl] Netscape7.1 bug or bad code?
From: N   Y <yukinz_jp@xxxxxxxxxxx>
Date: Wed, 2 Jul 2003 17:13:05 +0900 (JST)
All,

I corrected the misspelling (test/html to text/html in
META tag)
and tried again.
still have same problem.

thank you for any hints,

Yuki N

> 
> I'm having a problem with the JavaScript 
> between <xsl:comment><![CDATA[ and
> ]]></xsl:comment>tag 
> in my XSLT. 
> 
> Everything works fine in IE5, and Netscape7.02 
> but does not work in Netscape 7.1(ignore the
> JavaScript) .
> 
> 
>HTML code works fine in IE5.X, Netscape7.02,7.1.
> 
> 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


Current Thread