1
vote
2answers
58 views

Flexible box layout model: How should auto margins in the cross-axis direction behave?

Please help me to understand one issue with the flexible box layout model for which I get different results in Firefox and Chrome. Consider the following HTML fragment: <body> ...
0
votes
0answers
32 views

how do web rendering engines work with not visible objects?

I have a css stylesheet that defines some animations with transition states for many objects. Only one of these objects is visible at a time; all the other ones lie outside the visible area thanks to ...
1
vote
1answer
32 views

“pixel not pixel” and canvas, what the right way?

With removing target-densitydpi it pretty fu..n quest now. Major browsers scaling page in 1.5 times on my device (huawei honor android 4.0). How to prevent pixelization of canvas??
-1
votes
1answer
264 views

Using Webkit/Firefox Browser Control in C# [duplicate]

I am looking for a Web Browser control(Free preference) which I can not only use to display HTML but can also interact with the DOM in my C# Application or Vice Versa. Kindly guide me in this regard.
1
vote
0answers
67 views

Extent of anonymous table cell: Is Gecko or Webkit right?

Consider the following HTML markup: <ul> <li>Short</li> <li>LOOOOOOOOOOOOOOOOOOONG</li> </ul> <table> <tr> ...
0
votes
1answer
47 views

Different img height/width between WebKit/Gecko when using attribute 'auto'

I'm seeing different height and width for an image between WebKit and Gecko/Trident, and am not able to narrow down what is causing the difference, and what should be the workaround. The page in ...
1
vote
1answer
184 views

I'm trying to embed Gecko or WebKit in a Java Swing application

I'm trying to make a web browser in Java, using Swing, but I can't seem to find any good way to embed WebKit or Gecko. I am currently using JEditorPane.getPage() but that's pretty useless for me. I am ...
2
votes
3answers
286 views

Does font-size affect the rendering of ligatures?

Gecko and Webkit browsers support rendering of ligatures ff fi fl ffl via text-rendering: optimizeLegibility (font must have ligatures, e. g. Calibri). MDN page says, that only text of size 20px and ...
0
votes
1answer
50 views

SVG + CSS3 bug, multiple browsers?

Take a look at this: http://jsfiddle.net/5fLtb/3/ When you hover over it in webkit browsers (Chrome/Safari), it seems to glitch and go light blue then to the proper colour. In Gecko browsers ...
7
votes
2answers
340 views

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 ...
2
votes
2answers
95 views

Is there a way for me to force the browser to fix invalid markup by rerendering a specific element on the page?

I have a situation where elements are changed on the fly through a specific component. This component changes the innerHTML of these elements but doesn't actually rerender the element, but rather only ...
0
votes
3answers
244 views

Center div vertical, works fine with webkit but bug in firefox

I have a problem centering div in Firefox, it seems to work fine in all webkit browsers, so I dont really know what I'm doing wrong: My CSS: html { width: 100%; height: 100%; } body { position: ...
0
votes
2answers
706 views

Why is this font rendering so horrible in Firefox (Gecko) compared to Epiphany (WebKit)?

Here's the Firefox (Gecko) screenshot [full size]: And here's the Epiphany (WebKit) screenshot [full size]: Is there anything I can do to make it look nice in Firefox (Gecko)?
1
vote
2answers
222 views

Why does the google code prettifier refuse to work with XSLT?

The google code prettifier (which is also used here, on SO) parses the content of a .prettyprint and injects some <span>s to allow highlighting via css. This works perfectly simple, unless I'm ...
0
votes
0answers
494 views

javascript to .NET communication for webkit or xul runner

first I'm not sure if this is completely possible but reading this answer I think is a big step: Using WebKit.NET to call a C# function from JavaScript my problem is this: I want develop an app where ...
1
vote
2answers
206 views

Cross browser inconsistencies with margins?

I'm having a small problem with x-browser compatibility (Chrome and FF) for a textarea and margins. The page in question is here: http://www.mylesgray.com/contact/ The textarea under "Message" as ...
1
vote
1answer
176 views

How to use Gecko or WebKit if the user already has browser

Is there a way to use WebKit or Gecko if the user already have Chrome/Safari or Firefox installed?
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 ...
0
votes
2answers
740 views

Desktop Application upon Gecko/Mozilla or WebKit

How can I develop an installable desktop application on top of the Mozilla Engine or the Webkit engine. We want to have best of both worlds, ease of development with ...
3
votes
2answers
165 views

Under the hood, are HTML5 tags (article, section, aside, header, footer) implemented just like div?

I understand all these tags have different semantic meanings, like article is for a story that stand apart; section is for self-contained part of the page... They are good and useful tags, in many ...
5
votes
8answers
373 views

What's the best way to cycle through a large number of fixed position images in WebKit efficiently?

I'm currently working on a little site for my family. One of the things I wanted to do was to make a basic 'making of' stop-motion video. I could assemble it and upload it to Vimeo or something but I ...
0
votes
1answer
228 views

Webkit adding unwanted, additional space above single text character

Have a situation where I am adding a single character in a div with a button background. Seems pretty straight forward. However, the text placement is different between FF and Safari / Chrome. I ...
1
vote
1answer
315 views

Gecko vs. Webkit : padding inside inline blocks

Here's the fiddle showing my problem: http://jsfiddle.net/7QaXL/1/ In the webkit-based browsers the padding of the <p>s seem to push the images up, which is not what I want. So my questions ...
0
votes
1answer
1k views

WebKit or Gecko with .NET

In my searching I've found WebKit.NET, but I'm not sure that's what I'm aiming for. To be clear, I'm aiming to use a rendering engine like Gecko or Webkit with .NET. I'm hoping to use it within a ...
0
votes
3answers
378 views

Why do different browsers require their own border radius style?

I've wondered this for a while. Why do different browsers only support the CSS border-radius property if it is prefixed with their own special prefix. I don't understand why I have to write this: /* ...
0
votes
1answer
387 views

How to embed Git and Gecko/Webkit in C#?

I need to embed Git and Gecko/WebKit in a C# application that should run cross-platform compliantly. Am I dreaming or is this possible to do without a lot of work? I'm looking into Mono's WebBrowser ...
8
votes
2answers
134 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 ...
3
votes
2answers
1k views

How to embed Webkit/Gecko layout engine and start using it for UI?

I dont have much experience with C++ projects like Gecko or Webkit and I'd like to embed either Gecko or Webkit to a project so that I could construct my UI with HTML and CSS. Something I'm wondering ...
10
votes
3answers
2k views

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 ...
0
votes
1answer
79 views

Table rendering issue: firefox 4, gecko

In webkit browsers this page renders fine: http://www.ryanhaywood.com/s/film.html But in the updated firefox it is spaced horribly. I have messed around in firebug for days, I have no idea how to ...
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
3answers
519 views

this.dataset works under Chrome now, is it going to be supported by FF too?

We are using data- prefix in our html tags to attach some data to our elements. We can get that data by this.dataset property in Chrome and as we are too lazy to check if our functions work under ...
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 ...
2
votes
1answer
345 views

What are the basic differences differences between the browsers powered by Gecko and by those powered by Webkit?

I wanted to know about the basic differences between the browsers powered by Gecko and Webkit? - Are there any differences in the way they render? - Any difference in the mechanism they use to render? ...
1
vote
4answers
2k views

Reference to browser-specific CSS?

I'm looking for a reference for browser specific CSS. All the things that start with -moz, -webkit, -o, -khtml In this question for instance, the person answers with all the user-select codes for ...
11
votes
1answer
614 views

HTML localStorage setItem and getItem performance near 5MB limit?

I was building out a little project that made use of HTML localStorage. While I was nowhere close to the 5MB limit for localStorage, I decided to do a stress test anyway. Essentially, I loaded up ...
0
votes
2answers
922 views

What's causing this difference in rendering between Webkit and Gecko + Trident?

I've submitted this to the Webkit bugzilla (including full CSS and HTML) a week ago but didn't receive a response so far. In the mean time, I'd like to know if it's me or Webkit doing something ...
3
votes
1answer
2k views

full featured HTML rendering engine like WebKit/Gecko for embedded Linux?

I want to use HTML+CSS+JavaScript to develop a user interface for a touchscreen device in a Linux environment and need a suitable rendering engine. The device in question will have a ARM CPU with ...
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 ...
2
votes
3answers
206 views

Which client-side relational persistent storage options are a good choice for a new project?

Given that WebSQL is no longer being developed and IndexedDB has yet to become prevalent, what are our choices as developers for client-side relational storage going forward? Is it best simply not ...
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 ...
1
vote
3answers
232 views

Fixing ugly Greek symbols?

When displaying Greek symbols with, for example, &pi;, I get very different results in Chrome and Safari versus Firefox. As some example text, I have: Chrome: Firefox: Is there a way to get ...
0
votes
1answer
127 views

What events does WebKit fire, when a style attribute within a DOMSubTree changed?

With a Gecko based engine, the following example works and fires the appropriate event. Internet Explorer is covered with the onpropertychange event. I'm using jQuery within this example, but need to ...
1
vote
1answer
220 views

Gecko(Firefox 3.6/4beta) Hides Div While Webkit(Chrome/Dreamweaver) Displays Just Fine

I've ran into a snag I've been working on for a couple days and can't seem to come up with an answer online. The site template I'm working on now is located at "http://citylakersbaseball.org/2.0" - ...
3
votes
2answers
1k views

Gecko XPCOM usage vs WebKit

I need to embed a web browser in C++ application. As well, I need to reach its javascript methods from Delphi components. I know that for FF there is Gecko with XPCOM. Is there something like this ...
1
vote
1answer
486 views

How to save a tab's memory state in Firefox/Chrome?

I want to be able to save a tab's state in Firefox or Google Chrome so that I can restore it later, through writing a custom add-on/plug-in/extension. The closest thing I can find is Firefox's ...
3
votes
2answers
2k views

Any articles on how to get started building your own browser?

Hello recently I've been a bit curious and wanted to make a browser. I'd like to use an existing engine though such as Gecko or Webkit. Are there any resources on the web for how to get started and ...
5
votes
2answers
995 views

Print Stylesheet - Printed Page width Different in Webkit vs. Gecko/IE

When printing the page below in Safari/Chrome, the content (everything on the page, basically) is squished into the left side of the page, at about 60% of the page's width. However, in FireFox and IE ...
4
votes
1answer
2k views

How can I enable child inputs text selection in Mozilla Firefox using CSS?

Let's consider the following scenario. I have the following page where all rendered elements must be non-selectable. <html> <head> <style type="text/css"> body { ...

1 2