J
Jon Abbott
If a Gadget calls an ActiveX object that in IE prompts for authorization (ie
the prompt "To help protect your security, Internet Explorer has restricted
this webpage from running scripts or ActiveX controls that could access your
computer. Click here for options...") SideBar crashes.
Surely it should prompt or close the Gadget, not crash.
Two ways to reproduce this are with Java or Shockwave:
1. With Java
gadget.html:
<html>
<head>
<title>Crash by Java</title>
<style>
body {
width:120;
height:120;
}
</style>
</head>
<body>
<APPLET code="test.class" name="testjava" width=100% height=100%></APPLET>
</body>
</html>
test.class compiled from test.java:
import java.applet.*;
public class test extends Applet {
public void init()
{
}
}
2. With ShockWave
gadget.html
<html>
<head>
<title>Crash by ShockWave</title>
<style>
body {
width:120;
height:120;
}
</style>
</head>
<body>
<EMBED TYPE="application/x-shockwave-flash" src="test.swf" width=100%
height=100%>
</body>
</html>
test.swf can be any ShockWave app.
the prompt "To help protect your security, Internet Explorer has restricted
this webpage from running scripts or ActiveX controls that could access your
computer. Click here for options...") SideBar crashes.
Surely it should prompt or close the Gadget, not crash.
Two ways to reproduce this are with Java or Shockwave:
1. With Java
gadget.html:
<html>
<head>
<title>Crash by Java</title>
<style>
body {
width:120;
height:120;
}
</style>
</head>
<body>
<APPLET code="test.class" name="testjava" width=100% height=100%></APPLET>
</body>
</html>
test.class compiled from test.java:
import java.applet.*;
public class test extends Applet {
public void init()
{
}
}
2. With ShockWave
gadget.html
<html>
<head>
<title>Crash by ShockWave</title>
<style>
body {
width:120;
height:120;
}
</style>
</head>
<body>
<EMBED TYPE="application/x-shockwave-flash" src="test.swf" width=100%
height=100%>
</body>
</html>
test.swf can be any ShockWave app.