Tagged Questions
0
votes
0answers
6 views
troubleshooting SSL in Mozilla applications
Bug https://bugzilla.mozilla.org/show_bug.cgi?id=858394, SSL: disconnect, reconnect gives connection reset; all reconnect attempts fail
The bug has attached log of NSPR and the issue is easy to ...
-1
votes
1answer
25 views
Intercept Javascript Before Getting Into Firefox JS Interpreter [closed]
Currently I'm developing an app to intercept javascript files from a website, and do some modifications (add codes, beautify, etc) on them. I followed the tutorial from Honza here and it worked well. ...
1
vote
0answers
80 views
Get response body using nsiHttpChannel
I'm currently creating a Firefox extension application to capture HTTP response and compare its response body (HTML, etc) with data. I am using observer service to capture all HTTP request and ...
2
votes
1answer
108 views
Possibilties to employ/control/“embed” the gecko rendering engine?
what is the current way to go if you want to employ/instrument/"embed" the gecko rendering engine in a separate application? Is it to write a XUL based application and use libxul? Are there any up to ...
0
votes
1answer
117 views
Mozilla Plugins, will I have to recompile each time the Gecko SDK is updated?
I am about to start work on a Mozilla plugin for my company's main product line. I was under the impression that I could build using the Gecko SDK, say two major revisions ago, and that would cover ...
1
vote
0answers
100 views
Unable to deploy xulrunner 9 and above in mac Osx
I am able to use xulrunner by coping xulrunner-sdk/bin directory to my standalone application xul.framework coping xulrunner from xulrunner-sdk/bin/ to my MacOs in my application.
Everything works ...
1
vote
1answer
209 views
Mozilla engine simple questions
Three questions about the Mozilla engine (Gecko/XUL):
Is it possible to use its HTML parser in my C/C++ application (no any GUI, etc)?
Can I embed the browser (only the page output without any menu, ...
2
votes
1answer
456 views
Building a leaner XulRunner for HTML/JavaScript usage?
Is there a way to make a leaner HTML/Javascript -oriented build/package of the Mozilla XulRunner components, excluding some of the heavier XUL-platform features?
Background:
We are building a ...
0
votes
0answers
425 views
Setup a http proxy for xulrunner application with authuntication
I was able to see my requests through proxy If I add this in pref.js
pref("network.proxy.http", "proxy.abc.org");
pref("network.proxy.http_port", 3128);
pref("network.proxy.type", 1);
How to add ...
3
votes
2answers
599 views
Building XPCOM XULRunner 2.0 or newer versions
Followup to the following Questions:
What lib in the gecko 1.9.3 SDK do I link against to use moz_xmalloc()?
nsIGenericFactory.h is missing in the above version of xulrunner-2.0.en-US.win32.sdk
I ...
1
vote
1answer
152 views
XPJS (Javascript XPCOM) Documentation?
Anyone know where is some usable XPJS, or XPCOM in JS, documentation for recent versions of Firefox/Gecko? And sample code/ tutorials would be great too.
I need to write my own Component, but without ...
0
votes
1answer
74 views
Dynamic generation of stylesheets added to Firefox?
One can use the nsIStyleSheetService in Firefox to load and register stylesheets which apply in a similar way to userstyle.css; they are applied to every page loaded. However, this service takes ...
1
vote
2answers
94 views
Determining the bounding rectangle of Mozilla 4's content region
In versions of Firefox prior to 4, the web content was contained in a window of class "MozillaContentWindowClass". In the newer versions, the entire window is content-based, including toolbars, etc. ...
0
votes
1answer
517 views
Problem using mozilla Gecko activex in C# : “The document contains no data”
I want to use Mozilla Gecko as web browser instead default IE in C#. I had download "Mozilla ActiveX Control v.1.7.12" and add it to Visual Studio toolbox. then drag it to form. when I use navigate ...
4
votes
1answer
3k views
-moz-background-clip: *text* in Mozilla
Is there a good way to implement this in Mozilla? I have done it successfully in Webkit using -webkit-background-clip: text;. I have been trying to implement it into Firefox with no success. MDN has ...
2
votes
1answer
690 views
How can I add a recurring timer to a firefox addon?
I am trying to create an addon with the new addons builder preview (https://builder.addons.mozilla.org/), and I need a function to run about once every 10 minutes. I have tried both setInterval and ...
1
vote
2answers
817 views
Passing parameters between javascript asynchronous callback functions
I want to use the execAsync function here:
https://developer.mozilla.org/en/Storage#Asynchronously
and I want to pass values between handleResult and handleCompletion. Something like
...
0
votes
2answers
143 views
Where's the source-code for base::Thread
I was looking up something, and stumbled upon this code:
http://google.com/codesearch?q=kBrowserThreadNames
Where can I find the source for base::Thread?
(Thing is, in debugging something running ...
1
vote
1answer
277 views
execCommand not working for xml file
I am using execCommand command to 'Hilite' selected text on the page which is rendered with gecko engine/gtkmozembed.
if ( !document.execCommand("HiliteColor", false, colour) ) {
...
0
votes
2answers
3k views
highlight the text of the DOM range element,
I am able to highlight the text on the HTML page(rendered through gtkmozembed), which is selected, like below.
var range, sel;
if (window.getSelection) {
sel = window.getSelection();
...
3
votes
3answers
1k views
render HTML (convert to bitmap)
Can somebody recommend the best (and preferably portable) way to render HTML documents onto a bitmap? As far as I understand my main 2 options are WebKit and Gecko, but I wasn't able to find a good ...
0
votes
2answers
517 views
Firefox 3.0 CSS Drop Shadows
What is a technique to add drop-shadows to text that would work in Firefox 3.0?
FF3.5 and Chrome support the CSS3 property drop-shadow:
p { text-shadow: #000 2px 5px; }
IE6, 7, 8 support filters:
...
1
vote
1answer
1k views
Writing a Firefox XPCOM plug-in with a native window interface? (like ActiveX control)
I have an ActiveX control that works fine in Internet Explorer and the ActiveX Control Test Container program. The actual behavior of the control is split in two parts, where one part is the ATL gunk ...
3
votes
3answers
850 views
What does XPCSafeJSObjectWrapper do?
What does Mozilla's XPCSafeJSObject wrapper actually do?
MDC's documentation is as follows:
This wrapper was created to address some problems with XPCNativeWrapper. In particular, some extensions ...
0
votes
1answer
254 views
How to change the cursor in a embedded browser
I have an application with an embedded gecko browser. I want to know how to change the cursor from the default cursor to a custom cursor when I am in the embedded browser?
There is forms.css file in ...
