I am embedding mozilla in a gtk application using the gtk_moz_embed widget.
What I want to do is stop the XUL dialog popping up asking if I want to
accept a SSL certificate and automatically load the site.
Does anybody know how this can be accomplished?
Also I tried using the inIScreenCapturer to do a screen capture, but the
service never gets created. I try to do it like this:
nsCOMPtr<inIScreenCapturer> capture =
do_GetService("@moxilla.org/inspector/screen-capturer;1");
if (capture.get()==NULL)
printf("Capturer not installed ..");
else
....
Tony