Re: [webkit-dev] Does anyone encounter this problem on NY times while using QWebKit?

2009-06-18 Thread TianShijun
Does anyone has a glance at this problem? It has been reported as https://bugs.webkit.org/show_bug.cgi?id=26439 It is not easy to debug Qt programs because of the signal-slot mechanism. I don't kown where to setup the breakpoints. From: tians...@hotmail.com To: toniki...@gmail.com Date: Mon,

[webkit-dev] FW: Is there any way to dump webpage with flash in to image in X11?

2009-06-18 Thread TianShijun
It will be a great pity to lose this feature. _ 打工,挣钱,买房子,快来MClub一起”金屋藏娇”! http://club.msn.cn/?from=10___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Does anyone encounter this problem on NY timeswhile using QWebKit?

2009-06-18 Thread Yin xiaobing
TianShijun, Hello 用Gtk来调试webkit不是很你好吗? http://hi.baidu.com/zheqiduo/blog/item/90c4fe34380a121991ef39ec.html Yin xiaobing, xiaobing@gmail.com 2009-06-18 - Receiving the following content - From: TianShijun Receiver: undisclosed-recipients: Time: 2009-06-18, 14:05:42 Subject:

Re: [webkit-dev] Using WebKit renderer to produce PDF output

2009-06-18 Thread Ariya Hidayat
I need to produce a tool that can generate PDFs from HTML. The best solution I can think of is to use WebKit's layout engine, and plug my own PDF generator in as a renderer backend. I don't want to reinvent the wheel though - so I'm asking here has this been done already, or are there other

[webkit-dev] Porting WebKit On OMAP 3530 evm

2009-06-18 Thread jagadeesh k
Hi, Thanks Holger,Zoltan for your solutions.   Actually task has changed,i need to port webkit on OMAP 3530 running with open-embedded Linux(Angstrom).   1.For compiling the webkit on OMAP running with OE Linux whether the build instructions are same i.e ./autogen.sh, make, make install ?

Re: [webkit-dev] Porting WebKit On OMAP 3530 evm

2009-06-18 Thread Holger Freyther
On Thursday 18 June 2009 15:35:23 jagadeesh k wrote: Hi, Thanks Holger,Zoltan for your solutions. Actually task has changed,i need to port webkit on OMAP 3530 running with open-embedded Linux(Angstrom). Still the same task, there is no porting necessary... bitbake webkit-gtk wait,

Re: [webkit-dev] Tab key Navigation

2009-06-18 Thread tonikitoo (Antonio Gomes)
You can find default implementation in WebCore, yes: void EventHandler::defaultKeyboardEventHandler(KeyboardEvent* event) { if (event-type() == eventNames().keydownEvent) { m_frame-editor()-handleKeyboardEvent(event); if (event-defaultHandled()) return; if

Re: [webkit-dev] Review states

2009-06-18 Thread tonikitoo (Antonio Gomes)
A possible solution (adopted by Mozilla) is the use of checkin-needed keyword. So: 1) In case of a patch with r+ and a commiter is assignee, all requested modifications can be needed before landing 2) when a patch has r+ and a non-commiter is assignee, it needs an updated patch (that can carry

Re: [webkit-dev] SharedWorkers alternate design

2009-06-18 Thread Drew Wilson
For SharedWorkers, the fallback is to select a document from the document set. It's slightly uglier, though, as I'd need to deal with the case where the user closes the document while we're trying to load via it. Having a dedicated shadow frame would be much simpler. -atw On Wed, Jun 17, 2009 at

Re: [webkit-dev] SharedWorkers alternate design

2009-06-18 Thread Michael Nordman
Having a dedicated shadow frame would be much simpler. Yup. I think this is required ultimately for appcache integration too. A shared worker is a distinct appcache host. Dedicated workers can get away with piggy backing of their owning document since they just use the same appcache as the page,

[webkit-dev] Question on -fvisibilty, version-script and symbols.filter

2009-06-18 Thread Christophe Gillette
The build uses both the version-script link option and the visibility flag (making all symbols hidden in release mode except the ones that have a visibility explicitly set to default in the code). It seems that the use of the visibility flag should be sufficient and that the use of version-script

Re: [webkit-dev] Question on -fvisibilty, version-script and symbols.filter

2009-06-18 Thread Mike Hommey
On Thu, Jun 18, 2009 at 01:10:12PM -0700, Christophe Gillette wrote: The build uses both the version-script link option and the visibility flag (making all symbols hidden in release mode except the ones that have a visibility explicitly set to default in the code). It seems that the use of the

Re: [webkit-dev] Review queue needs love

2009-06-18 Thread Oliver Hunt
I reviewed quite a few last night as well. At the moment there appear to be a large number of chromium, gtk, and qt specific patches up for review -- it would be great if reviewers for those ports went through them all :D --Oliver On Jun 18, 2009, at 2:27 PM, Adam Barth wrote: I'll do

Re: [webkit-dev] Review queue needs love

2009-06-18 Thread Adam Treat
On Thursday 18 June 2009 05:39:04 pm Oliver Hunt wrote: I reviewed quite a few last night as well. At the moment there appear to be a large number of chromium, gtk, and qt specific patches up for review -- it would be great if reviewers for those ports went through them all :D I went through

[webkit-dev] Fwd: Review queue needs love

2009-06-18 Thread Eric Seidel
Oh how I wish that my @webkit.org address and gmail would get along... -eric -- Forwarded message -- From: Eric Seidel macd...@gmail.com Date: Thu, Jun 18, 2009 at 7:02 PM Subject: Re: [webkit-dev] Review queue needs love To: Adam Treat tr...@kde.org Cc:

[webkit-dev] InlineBox::m_isSVG

2009-06-18 Thread Roland Steiner
Hi all, As I'll probably need to add some special handling for ruby in inline flow boxes, I came across this flag InlineBox::m_isSVG. AFAICT it doesn't seem to have a deep functionality (it seems to be always true for SVG boxes and always false for non-SVG boxes). Now, in order to consolidate the

Re: [webkit-dev] InlineBox::m_isSVG

2009-06-18 Thread Eric Seidel
Agreed. That should just be a virtual call. I don't see any reason for that to need to be a bit on the baseclass. I do not think that changing ti to be a virtual call would cause a noticeable performance change. -eric On Thu, Jun 18, 2009 at 7:29 PM, Roland Steinerrolandstei...@google.com