The bug's effect can be seen by visiting e.g. the page
http://www.mcafee.com/aboutus/
with and without Javascript enabled, doing 'Save As' to different files each time,
and then comparing them on Unix with the command 'diff -bi'.
The most interesting differences are as follows.
First, an excerpt from the page with Javascript disabled:
This contains the following statement:<td> <IFRAME SRC="http://directads.mcafee.com/hserver/acc_random=10061572/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60" NORESIZE SCROLLING=NO HSPACE=0 VSPACE=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0 WIDTH=468 HEIGHT=60> <SCRIPT SRC="http://directads.mcafee.com/jnserver/acc_random=10061572/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60"> </SCRIPT> </IFRAME> </td> ... <tr> <td align=center> <font face="Arial,Verdana,sans-serif" size=2 style="font-size:12px" color="#FF0000"> <b>Welcome</b> </font> </td> </tr>
which loads the following javascript:<SCRIPT SRC="http://directads.mcafee.com/jnserver/acc_random=10061572/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60"> </SCRIPT>
which modifies the current document. This Javascript appears to corrupt the current document when run on the Linux version of Netscape 4.76.document.writeln("<a href=\"http://directads.mcafee.com/adclick/CID=0000030fc0aa030b00000000/acc_random=10375157/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60\" target=\"_new\"><img src=\"http://ads.mcafee.com/mcafee_banners/mcafee.com/techknowhow/468x60_mcafee_2.gif\" border=0 alt=\"\" ></a>"); document.close();
The effects of the Javascript- both intended and unintended- can be seen in the same excerpt from the page with Javascript enabled:
You can see that the <SCRIPT>...</SCRIPT> has been overwritten by the Javascript with <A>...</A>.<td> <IFRAME SRC="http://directads.mcafee.com/hserver/acc_random=10369189/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60" NORESIZE SCROLLING=NO HSPACE=0 VSPACE=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0 WIDTH=468 HEIGHT=60> <A href="http://directads.mcafee.com/adclick/CID=0000048cc0aa030b00000000/acc_random=10369189/SITE=Mcafee.com/AREA=Aboutus.homepage/AAMSZ=468x60" target="_new"> <IMG src="http://ads.mcafee.com/mcafee_banners/mcafee.com/placeware/cc2k2468x60.gif" border=0 alt="Click Here !" > </A> </IFRAME> </TD> ... <TR> <TD align=center> <FONT face="Arial,Verdana,sans-serif" size=2 style="font-size:12px" color="#FF0000"> <FONT face="Arial,Verdana,sans-serif" size=2 Ttyle="font-size:12px" color="#FF0000"> <B>Welcome</B> </FONT> </TD> </TR>
This is consistent with corruption caused by document.write() seen on the Microsoft site, and for some reason, this causes Netscape to be unable to display most of the page.Ttyle="font-size:12px"