Tagged Questions
0
votes
0answers
29 views
Why can't I call XSelectInput in main thread of chrome?
I'm writing a chrome plugin and I have to track the move and resize event of chrome, so I open a display by XOpenDisplay(NULL), and use XSelectInput to select the StructureNotifyMask event.
But the ...
0
votes
1answer
355 views
Image-rendering madness with incorrect colors in Gecko (Firefox) and Trident (IE) vs. Webkit (Chrome and Safari)
I've designed a website so that an image on the left seamlessly blends into the background color on the right without transparency (the color is simply matched on the far right border of the image to ...
1
vote
0answers
53 views
Window size issue when chrome is working with Gecko Plugin API
Our plugin is a windowless one developed using Gecko Plugin API and is targeted for Firefox and Chrome. There is a window size issue problem when Chrome (from verion 18 onwards) calls NPP_SetWindow ...
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 ...
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
404 views
How to compile NPAPI plugin sourcecode using Visual Studio 2008?
(First, sorry for bad English ! )
I downloaded the source code here : http://minimizetotray.googlecode.com/files/SourceCode.zip - which is a NPAPI plugin that has the ability to minimize Chrome ...
0
votes
1answer
996 views
Why doesn't IE's caret position in a text input equal the string index? What's the workaround?
I'm not surprised, but I've discovered that IE8 behaves very differently than Chrome and Firefox with respect to retrieving the caret position from a text <input> or <textarea>. Whereas ...
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 ...
2
votes
1answer
346 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?
...
0
votes
2answers
923 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 ...
1
vote
1answer
221 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" - ...
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 ...