[webkit-dev] Mouse pointer change on mouse over

2009-02-12 Thread Braganza Roberts
Hi, I am new to this webkit-dev list. I wanted to know, how does the mouse pointer changes when the mouse is moved over a link or a button in a Web page. Where does the mouse over event gets captured on any element on html ? Regards, Sam. ___

Re: [webkit-dev] Mouse pointer change on mouse over

2009-02-12 Thread Rick
SVG has a cursor attribute, see http://w3.org/tr/svg that you place on elements in the markup to define alternate cursors when the mouse is hovering over an element. I'll let you look it up yourself, but I strongly suspect that HTML has the same, that the default for a link object is the pointer

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-12 Thread Nitin Walke
Hi, Thanks for your suggestion. I added delegate method in FrameloaderClient::dispatchDidFailLoading for GTK, however, noticed that the control flow never reached there - either in case of successful response or for http error like server not found etc. Then I added some debug code in

[webkit-dev] Window Cairo Build Redistribution

2009-02-12 Thread Frank Zerangue
Do I understand correctly that the Windows Cairo build of WebKit is re- distributable and the Apple build of WebKit is not? If this is the case, can someone explain why WebKitSupportLibrary which is NOT re-distributable is needed for the Windows Cairo build? Thanks, Frank Zerangue

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-12 Thread Julien Chaffraix
Hi, Thanks for your suggestion. I added delegate method in FrameloaderClient::dispatchDidFailLoading for GTK, however, noticed that the control flow never reached there - either in case of successful response or for http error like server not found etc. Then I added some debug code in

Re: [webkit-dev] Mouse pointer change on mouse over

2009-02-12 Thread Darin Adler
On Feb 12, 2009, at 4:43 AM, Braganza Roberts wrote: I wanted to know, how does the mouse pointer changes when the mouse is moved over a link or a button in a Web page. To see all the details look for calls to setCursor in the source file EventHandler.cpp. The most interesting one is the

Re: [webkit-dev] Window Cairo Build Redistribution

2009-02-12 Thread Brent Fulgham
Hi Frank, On Thu, Feb 12, 2009 at 8:31 AM, Frank Zerangue fzer...@cisco.com wrote: Do I understand correctly that the Windows Cairo build of WebKit is re-distributable and the Apple build of WebKit is not? If this is the case, can someone explain why WebKitSupportLibrary which is NOT

[webkit-dev] Flash support with Qt for WebKit

2009-02-12 Thread Joshi
Hi, What is the status of support for Flash player and other Mozilla style plugins in WebKit? I compiled WebKit using Qt port on Linux and it runs fine but fails to display pages with Flash. I have flash plugins for Mozilla and so both Firefox and Konqueror can show flash. Is there any guide on

Re: [webkit-dev] I encounter a problem during building WebKit

2009-02-12 Thread nguyen hai -cuncon
Hi Darin, You got the same message like I did. If you use Windows OS, you must install enough software tools that list on webkit.org. In additional, you have enough disk space to build webkit. For me, it is about more than 5Gbytes.   On Sun, Feb 8, 2009 at 12:36 AM, Darin Adler da...@apple.com

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-12 Thread zaheer ahmad
I think you need to set CURLOPT_FAILONERROR on the curl handle for the curl to report http errors. Also in general you would want to diffferentiate how you handle errors on mainresource vs subresources regards, Zaheer On Thu, Feb 12, 2009 at 9:04 PM, Nitin Walke nitwa...@gmail.com wrote: Hi,