gecko

Firefox/Gecko control interfering with Windows Forms key presses

Edit: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. Here is a simple test project (Visual Studio 2008 C#) that reproduces the problem. Edit #2 we're willing to pay $600 to have this bug fixed. See above for sample project that reproduces the problem. We have a Firefox (Gecko)...

Is there a LGPL/Apache/BSD Python library for rendering modern HTML and Flash with a transparent background on Windows,Mac,Linux?

I'm looking for a Python library that's suitable, with DOM access too. I don't mind if the flash transparency doesn't carry over. PyQT's license isn't compatible with the project, and PySide isn't compiled cross-platform yet. Any thoughts? ...

How to create a thumbnail of a website?

Is would guess that there is already a webkit/gecko based command line app (maybe even working as a server speed up to rending of multiple pages) which is already doing this? ...

How to attach mouse event listeners to embedded nsIWebBrowser in C++

I've embedded an nsIWebBrowser in my application. Because I'm just generating HTML for it on the fly, I'm using OpenStream, AppendToStream, and CloseStream to add content. What I need is to add event listeners for mouse movement over the web browser as well as mouse clicks. I've read documentation and tried lots of different things, but ...

-webkit- and -moz-border-radius does not work on tables?

This works div { -moz-border-radius: 5px 5px 0 0; border:1px solid #000; margin:30px; } This does not work table { -moz-border-radius: 5px 5px 0 0; border:1px solid #000; margin:30px; } Does anyone know how to use -moz and -webkit to work on tables? ...

Firefox: If needs spellcheck?

Possible Duplicate: Javascript: I have a custom right-click menu but still want the spellcheck! Is there a JS property or command to see if a word is underlined in red (ie. needs to be spellchecked) in Firefox? Ideally, for sample code it would be like... if I right click on a word the is underlined in red it will alert: //wat...

document.readyState analog for gecko-based browsers

IE has attribute readyState in document object, that indicates current state, e.g. "loading", "complete" etc. Is there any way to find current loading state of document in Mozilla-based browsers? I'm aware of DOMContentLoaded event, but it wont fit my situation, as my code can be executed after this event was fired. Added: no, I can't ...

npapi plugin: how do I install a gecko plugin?

I've compile the basic plugin found here but I can't figure out how to install it on my Ubuntu machine. ...

Firefox (Gecko) code - interrogating the cache - how do I get a list of devices?

Referring to nsICacheService (https://developer.mozilla.org/en/NsICacheService) and nsICacheVisitor (https://developer.mozilla.org/en/nsICacheVisitor): Where do I get an instance of nsICacheVisitor? Where do I get a list of devices so that I can call visitEntry() and visitDevice()? ...

Creating a document from a string in Gecko

I have a string such as <html><body><div id="message">Hello World!</div></body></html> and I would like to get the content of the #message element without parsing the HTML myself. I thought maybe I could create a document object from a string in Gecko (this is for a Firefox add on) but I don't see any simple way. I noticed that ther...

Gecko Javascript to c++

Hey, Im using the xulrunner example application and im trying to work out how to call into c++ code from javascript. I have googled and the best i came up with was to use nsIDOMEventListener interface but have no idea how. Any ideas? ...

How can I create thumbnails of web pages using a layout engine in Perl?

Are there bindings for layout engines like Gecko or WebKit for Perl? I found Gtk2-Webkit on CPAN but I would like to know if there are other options. My idea is to use one of those engines to create thumbnails of web pages from a Perl script. ...

HTML Printing using Gecko or Webkit engine

Is there a way where I can directly print html file or url without invoking any dialogs in .NET? ...

Adding entry to Firefox cache from an XPCOM component

The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object that will read files from disk and write them to Firefox cache. Thanks ...

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: p { filter: shadow(color=#123456, strength=2); } How would you do it for Firefox 3.0? It uses the Gecko rendering engine and none of the...

Offline Gecko reference.

Hi All, I was trying to find offline version of Gecko DOM reference on net (https://developer.mozilla.org/en/Gecko_DOM_Reference) but was unsuccessful. I will be travailing next two days and if some points to a resource I can finish my work during this time and enjoy my weekend ;). Thanks in advance....... ...

Firefox Gecko SDK : NPP_GetValue not getting called

Hi, I have tried out the NPRuntime sample provided with the Gecko SDK 1.9.1 with the help of this link. It works perfectly fine with Firefox 3.6. Following the above steps I created a new scripting plugin (npmyplugin.dll). I am currently placing npmyplugin.dll in a folder other than Firefox/plugins. I am registering the associated mim...

What is -moz-use-text-color?

I understand it's deprecated in FireFox, and its replacement is currentColor. My impression is that it's used for SVG-related stuff. But what the heck is it? :) ...

Is it possible to delete or invalidate gecko / firefox session without closing browser?

Is it possible, using the gecko / firefox XPCOM interfaces, to delete or invalidate a user's active session without closing the browser? I am using Gecko embedded (specifically GeckoFX) in an application where it is possible that multiple users might use the browser component across the lifetime of the application. The application packa...

Detect window closing event in Gecko based browser

How to detect window closing event when user press Alt+F4 or using javascript window.close() in Gecko based browsers? ...