Questions tagged [gecko]

An open source browser engine developed by Mozilla and used in browsers such as Firefox, Seamonkey and others

Gecko is an open source browser engine developed by Mozilla and used in browsers such as Firefox, Seamonkey and others.


Resources :


Related tags

553 questions
73
votes
9 answers

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 Winform application?
Jon Galloway
  • 50,160
  • 24
  • 120
  • 192
70
votes
10 answers

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 navigateto(fancy_url);). I'd love to use Firefox or WebKit.…
Martin Marconcini
  • 23,346
  • 18
  • 98
  • 135
42
votes
3 answers

Force visible scrollbar in Firefox on Mac OS X

Firefox 24 introduced Lion scrollbar support. This will show scrollbars in Lion style on Mac OS X. See: https://wiki.mozilla.org/Lion_Scrollbars/Triage This causes a problem for me: a scrollbar on a div is now hidden by default. Sometimes I want to…
Boschman
  • 707
  • 1
  • 9
  • 15
37
votes
4 answers

Downloadable font on firefox: bad URI or cross-site access not allowed

I'm a webmaster at http://www.beperk.com (I'm giving you the URL so you are able to check the problem) and I'm having lots of problems using @font-face in CSS. I want to use the foundicons from zurb dot com so I hosted them at Amazon S3. I set up…
dolarsrg
  • 845
  • 1
  • 9
  • 10
36
votes
5 answers

How to embed a browser object, other than IE, 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. I'm wondering how does one integrate a Gecko or WebKit one. Are there VCL examples somewhere? If not, how would one go…
Gustavo Carreno
  • 8,809
  • 13
  • 42
  • 72
36
votes
3 answers

CSS "outline" different behavior behavior on Webkit & Gecko

I'm working on an experiment & I found out that the "outline" CSS2 property is not implemented the same way on Webkit & Gecko In the script below, I have a absolute position div inside another div but floating outside of it. The outline on Webkit…
Elie
  • 5,905
  • 7
  • 29
  • 34
35
votes
1 answer

What does "KHTML, like Gecko" mean in a user-agent string?

I understand that KHTML is the HTML Layout Engine used, but what significance does the "like Gecko" part have? Why is it there? Is there a historical reason similar to the "Mozilla" part of the User Agent String?
sidney
  • 649
  • 1
  • 6
  • 10
30
votes
3 answers

Embedding Gecko/WebKit in Java

I'd like to have Gecko, WebKit, or another webbrowser embedded in Java as a Swing/AWT control. I'm looking for something different than JRex or JWebPane.
user318590
23
votes
1 answer

How to replace browser javascript engine with LLVM?

As a proof of concept, I would like to get a browser to be able to run LLVM IR. The basic idea would be that any language with an LLVM compiler, would be able to work as a first class citizen on the net. (Which is why I don't want to go the LLVM IR…
Heptic
  • 2,806
  • 4
  • 26
  • 48
19
votes
3 answers

Firebug not showing stack trace for errors?

I have noticed that even with "show stack trace with errors" enabled from the drop down, only errors that occur seem to have traces, but when I do: throw new Error('foo'); I do not see any stack trace for it even though it seems to appear in the…
Tower
  • 87,855
  • 117
  • 329
  • 496
18
votes
6 answers

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 and Gecko, but I'd love to get some feedback…
conmulligan
  • 6,849
  • 6
  • 28
  • 44
17
votes
6 answers

How to convert anything to a String safely in JavaScript

If I have: var test = {toString: function(){alert("evil code"); return "test";}}; how can I convert test to a string? without calling test.toString() and without using a typeof x == "string" check since I want to allow non strings. Note: this is…
erikvold
  • 14,439
  • 11
  • 49
  • 95
17
votes
1 answer

-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…
Lorne Markham
15
votes
6 answers

How to turn off the Marionette/gecko driver logs in selenium 3

I need to turn off the Marionette/GeckoDriver logging; is there is any way to do that? I've been searching a lot, but I am not getting the proper answer. The INFO logs were: 1484653905833 geckodriver INFO Listening on 127.0.0.1:15106 Jan…
Suresh Kumar
  • 398
  • 2
  • 4
  • 12
1
2 3
36 37