6
votes
4answers
108 views
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 tho …
0
votes
3answers
574 views
How to draw vertical text with CSS cross-browser?
Hi,
i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).
1
vote
1answer
24 views
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 nsIDOMEv …
1
vote
3answers
48 views
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 ele …
1
vote
1answer
25 views
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 …
1
vote
1answer
69 views
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.
0
votes
1answer
40 views
Creating an image from a nsIBinaryInputStream
I create a binary input stream using some js trickery which contains compressed image data like jpeg or gif. I want to decode and display this data either using imgITools::decodeIm …
2
votes
3answers
386 views
What does XPCSafeJSObjectWrapper do?
What does Mozilla's XPCSafeJSObject wrapper actually do?
MDC's documentation is as follows:
This wrapper was created to address some problems with XPCNativeWrapper. In particu …
2
votes
2answers
147 views
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 …
0
votes
1answer
107 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 # …
0
votes
3answers
93 views
Firefox: If needs spellcheck? [closed]
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 …
0
votes
1answer
51 views
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 n …
18
votes
4answers
4k 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 inc …
1
vote
1answer
123 views
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?
1
vote
1answer
57 views
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, …
