gecko is an open source browser engine developed by Mozilla and used in browsers such as Firefox, Seamonkey and others.
41
votes
9answers
46k views
Is it possible to Embed Gecko or Webkit in a Windows Form just like a WebView?
I'd love to know if there is such a thing as a Gecko.NET ;) I mean, just like we can embed a WebView and that is an "instance" of IE7 inside any Windows Forms application (and tell it to ...
30
votes
5answers
10k views
How to embed a browser object, other than IE<n>, in a Delphi application
Using the default TWebBrowser makes things easy to embed a web browser. Unfortunately the one that comes in by default is IE<n>.
I'm wondering how does one integrate a Gecko or WebKit one.
...
47
votes
10answers
48k views
Is there an embeddable Webkit component for Windows / C# development?
I've seen a few COM controls which wrap the Gecko rendering engine (GeckoFX, as well as the control shipped by Mozilla - mozctlx.dll). Is there a wrapper for Webkit that can be included in a .NET ...
11
votes
2answers
10k views
Embeding Gecko/Webkit in Java
Id' like to have Gecko/Webkit/other webbrowser embeded in Java as a swing/awt control.
I like something different to Jrex or JWebPane.
14
votes
2answers
22k views
-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;
...
2
votes
1answer
997 views
Accessing Firefox cache from an XPCOM component
Does anybody know how to get local path of file cached by Firefox based on its URL from an XPCOM component?
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 ...
2
votes
0answers
535 views
Gecko html editor with language Delphi / Free Pascal
I want to know how to edit an html document loaded with geckobrowser using the language pascl / delphi.
it means, do processing on the web page using geckobrowser.
as shown here:
...
3
votes
1answer
124 views
Constant declaration with block
Recently I was looking into Firefox Add-on Builder SDK sources, and stumbled on such constants declaration:
const { getCodeForKey, toJSON } = require("../../keyboard/utils");
I could find ...
0
votes
1answer
176 views
OLE ERROR 805303E in delphi?
hello
I am testing a function to load an html code in a geckobrowser (gecko component in Delphi).
Here the function
procédure TCustomGeckoBrowser.LoadHTML (htmlCode: string);
var
...
11
votes
6answers
10k views
What is the best HTML Rendering Engine to embed in an application?
At the moment, our application uses the Trident Win32 component, but we want to move away from that for a few reasons, chief among them being our desire to go cross-platform.
We're looking at WebKit ...
3
votes
1answer
2k views
Web crawler capable of interpreting Javascript in python for Windows
My ultimate goal is to build a web crawler capable of downloading all of the images on a webpage. My understanding from the reading I've done is that I need to embed a rendering/layout engine such as ...
5
votes
3answers
3k views
Retrieve parent node from selection (range) in Gecko and Webkit
I am trying to add an attribute when using a wysiwyg editor that uses "createLink" command. I thought it would be trivial to get back the node that is created after the browse executes that command.
...
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
675 views
How do I get past “Gecko engine crashed.;Gecko engine crashed.;Gecko engine crashed.;” error after upgrading abcPDF
I recently upgraded abcPDF from v8.1.0.7 to v8.1.1.1 (and then later from v8.1.1.1 to v8.1.1.2). After the upgrades, I got errors similar to the following whenever I tried to generate a PDF:
"Gecko ...
5
votes
3answers
3k views
Is there a Gecko equivalent to -webkit-mask or a fancy way of degrading for Gecko browsers?
I'm looking for a solid answer on whether or not there is an equivalent to -webkit-mask in Gecko browsers/Firefox?
If not, is there any way of degrading -webkit-mask in CSS to a straight ...
5
votes
2answers
4k views
How do I embed Gecko using gecko-sharp on Mono/Windows?
Gecko is the rendering engine for Firefox. Using gecko-sharp it is possible to embed it to any Mono/GTK# program. There is a sample application called GladeSharpBrowser for doing this. I could manage ...
2
votes
1answer
351 views
How does Gecko (or any other layout engine) render a document/page?
It was kind of hard to go through Gecko's documentation to see how it renders a web page.
I'm doing some performance analysis for my projects across the leading browsers to see how to improve ...
3
votes
2answers
2k views
Gecko API for DOM
Does Gecko expose an API for working directly with its DOM? I'm looking for a class like HtmlElement that can be used to build/traverse trees of HTML content.
I'm trying to host Gecko as a web ...
1
vote
2answers
836 views
Can I get an image's file size and mime-type via JavaScript (FireFox/Gecko/Mozilla only)
Can I get an image's file size and mime-type via JavaScript. I am writing a script for inspecting all images in a document. I will run the script in FireFox only so a solution specific to FireFox ...
0
votes
2answers
1k views
Simple example for NPAPI plugin
I'm trying to find a simple example on how to write an NPAPI plugin that will be bundled with my Chrome extension.
The thing I need to do with the NPAPI is simply to run an already existing local ...
-1
votes
1answer
1k views
How to add elements to web page from Firefox extension
I'm going to develop a Firefox extension which should put a button in the loaded pages, when the tag: <input type="file" ... > is found and a file has been selected.
Likewise, I think the skype ...
8
votes
2answers
135 views
How do you programmatically determine to which events an HTML object can listen for?
I've been looking over the docs at developer.mozilla.org and the Apple dev docs but I'm not able to find documentation that explains whether or not you can programatically determine if a specific HTML ...
7
votes
2answers
2k views
moz-transform scale decrease div size problem
I'm having problems with mozilla moz-transform scale property.
I'm looking for a replacement of the zoom property, which works fine in everything except firefox.
When I want to shrink the div, its ...
4
votes
1answer
759 views
Implementing nsIProtocolHandler with Delphi
I'm trying to build an nsIProtocolHandler implementation in Delphi. (I've done an IInternetProtocol before with success, and want to have in FireFox what I've got in Internet Explorer.)
Thanks to the ...
1
vote
1answer
196 views
Webkit Bug? Broken CSS
Working on part of my website. Here's my code: http://jsfiddle.net/firelizzard/ASdMq/
In Chrome Beta (WebKit):
In Firefox (Gecko):
Gecko is rendering this code how I want it. What is up with ...
1
vote
2answers
461 views
Transfer large files using HTTP/POST
How can I upload (very) large file with HTTP protocol in C (or C++)?
I know it's not the right way to upload huge files, but that's not the point.
I've already seen sources about POST transfers of ...
1
vote
2answers
324 views
Recommendations for Working Around IE9 Treewalker Filter Bug
Background Info
A bug exists currently in IE9 where it thinks that the NodeFilter property of the createTreeWalker method is a callback function instead of an object containing a callback function.
...
1
vote
1answer
656 views
Style behavior difference between WebKit and Gecko
I was working on a web application when I noticed some peculiar behavior. I have an element with styles applied via the JavaScript style property. Afterwards, I tried to remove all of the styles ...
0
votes
1answer
253 views
Gecko NSModule: ContractIDEntry “nsID const *”?
I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6
Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt.
I'm coding my product ...
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();
...
0
votes
3answers
306 views
Firefox: If needs spellcheck? [duplicate]
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 ...