Re: [webkit-dev] Implementing the sizes attribute of the link tag from HTML5

2010-04-20 Thread Aaron Boodman
On Mon, Apr 19, 2010 at 5:53 PM, Peter Kasting pkast...@google.com wrote: On Thu, Apr 15, 2010 at 3:41 PM, Aaron Boodman a...@chromium.org wrote: I'm not sure what the path is for fetching favicons today. Does WebCore just implicitly do it, or does it expose the information to the host, who

Re: [webkit-dev] Implementing the sizes attribute of the link tag from HTML5

2010-04-20 Thread Maciej Stachowiak
On Apr 19, 2010, at 11:58 PM, Aaron Boodman wrote: On Mon, Apr 19, 2010 at 5:53 PM, Peter Kasting pkast...@google.com wrote: On Thu, Apr 15, 2010 at 3:41 PM, Aaron Boodman a...@chromium.org wrote: I'm not sure what the path is for fetching favicons today. Does WebCore just implicitly do

Re: [webkit-dev] Fwd: CMake WebKit-EFL: initial preview

2010-04-20 Thread Patrick Roland Gansterer
Hi, Gustavo Sverzut Barbieri: Find attached 2 patches. ? ?- WebKit-EFL-CMake_All-Missing-Patches.patch is a bundle that implements CMake support for WebKit-EFL and also adds the missing patches to make it compile (but runs with some bugs, needs updating to some api changes). Apply it if

Re: [webkit-dev] Where are bench-alloc-reatained.js and ~-nonretaned.js?

2010-04-20 Thread Balazs Kelemen
Thanks for the commit, Geoffrey! :-) On 04/19/2010 02:44 PM, Balazs Kelemen wrote: Hi folks! I am doing some hacking around the GC, and want to test and benchmark it. In GC related changes I see results of these two benchmarks, but I do not find them in the tree. Are those living in the

Re: [webkit-dev] Where are bench-alloc-reatained.js and ~-nonretaned.js?

2010-04-20 Thread Balazs Kelemen
We investigating in multithreading possibilities. In connection with the GC I try to organize the mark phase into a parallel thread. The idea is to have 2 heap, serve allocations from the active one, while marking the other. When the active is full, swap them. Currently, it is in a non stable and

[webkit-dev] MD5 in WebCore

2010-04-20 Thread 鵜飼文敏
I'm implementing new protocol of WebSocket ( http://www.whatwg.org/specs/web-socket-protocol/ ). Since it now requires MD5 in handshake, I wonder how I could add MD5 in WebCore. For now, there is no MD5 in WebCore. It is in WebKitTools/DumpRenderTree to get message digest of image file. I'm

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Maciej Stachowiak
On Apr 20, 2010, at 3:32 AM, Fumitoshi Ukai (鵜飼文敏) wrote: I'm implementing new protocol of WebSocket ( http://www.whatwg.org/specs/web-socket-protocol/ ). Since it now requires MD5 in handshake, I wonder how I could add MD5 in WebCore. For now, there is no MD5 in WebCore. It is in

Re: [webkit-dev] CMake vs. Apple's build farm

2010-04-20 Thread Bill Hoffman
On 4/20/2010 5:13 AM, Maciej Stachowiak wrote: 1) None of the Mac builders have CMake installed. 2) The organization that maintains the Mac builders is not willing to let teams use any build systems to build that do not come with the OS, or to install any custom binaries on the builders,

Re: [webkit-dev] Fwd: CMake WebKit-EFL: initial preview

2010-04-20 Thread Gustavo Sverzut Barbieri
On Mon, Apr 19, 2010 at 11:34 PM, Patrick Roland Gansterer par...@paroga.com wrote: Hi, Gustavo Sverzut Barbieri: Find attached 2 patches. ? ?- WebKit-EFL-CMake_All-Missing-Patches.patch is a bundle that implements CMake support for WebKit-EFL and also adds the missing patches to make it

Re: [webkit-dev] Fwd: CMake WebKit-EFL: initial preview

2010-04-20 Thread Adam Treat
I'd really like to see this on bugs.webkit.org with a proper patch splitting out the CMake portion. I understand that this is primarily motivated by your desire to see EFL port build, rather than to solve the build system problem, but this *DOES* add a new build system to the tree. I think we

Re: [webkit-dev] CMake vs. Apple's build farm

2010-04-20 Thread Bradley Nelson
Would prebuilt checked-in binaries be an option? Can cmake run out of an arbitrary directory? -BradN On Tue, Apr 20, 2010 at 5:25 AM, Bill Hoffman bill.hoff...@kitware.comwrote: On 4/20/2010 5:13 AM, Maciej Stachowiak wrote: 1) None of the Mac builders have CMake installed. 2) The

Re: [webkit-dev] CMake vs. Apple's build farm

2010-04-20 Thread Darin Adler
On Apr 20, 2010, at 10:06 AM, Bradley Nelson wrote: Would prebuilt checked-in binaries be an option? No. -- Darin ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] Implementing the sizes attribute of the link tag from HTML5

2010-04-20 Thread Stephan Assmus
Hi, Darin Adler wrote: On Apr 15, 2010, at 3:41 PM, Aaron Boodman wrote: On Thu, Apr 15, 2010 at 3:25 PM, Maciej Stachowiak m...@apple.com wrote: Well, it's hard to truly have consensus on adding feature without knowing what it is. That being said, I at least would love to see a more

Re: [webkit-dev] CMake as a build system?

2010-04-20 Thread Peter Kasting
On Tue, Apr 20, 2010 at 1:26 AM, Patrick Roland Gansterer par...@paroga.com wrote: Bradley Nelson: 1. Ability to incrementally transition on Windows. It took us about 6 months to switch fully to gyp. Previous attempts to move to scons had taken a long time and failed, due to the

Re: [webkit-dev] CMake as a build system?

2010-04-20 Thread paroga
On Tue, 20 Apr 2010 10:53:55 -0700, Peter Kasting pkast...@google.com wrote: AIUI, readability isn't the issue, it's the ability for e.g. Visual Studio to correctly understand dependencies itself so that incremental builds from inside the IDE (which is where most Windows Chromium developers do

Re: [webkit-dev] Implementing the sizes attribute of the link tag from HTML5

2010-04-20 Thread Peter Kasting
On Tue, Apr 20, 2010 at 10:48 AM, Stephan Assmus supersti...@gmx.de wrote: In the Haiku port, I've temporarily made some useful BitmapImage methods public, to iterate over all images contained in the object and find the one with the size I want (in the browser code later on). Is there a better

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Michael Nordman
In webcore, should we use the same impl on all platforms rather than use cryptdll on windows and md5.cc elsewhere? For chrome, I don't think we can have a dependency between WebKit/WebKit/chromium and /src/base/, and 'base' depending on 'webkit' also doesn't work. How can we avoid replicating the

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Alex Russell
Hate to ask a dumb question, but why MD5? Isn't it on its last legs as a secure hash? New protocols should be avoiding it. On Tue, Apr 20, 2010 at 11:48 AM, Michael Nordman micha...@google.com wrote: In webcore, should we use the same impl on all platforms rather than use cryptdll on windows

[webkit-dev] Warning: expect commit-queue delays

2010-04-20 Thread Eric Seidel
The commit-queue [1] is up to 28 patches (20 bugs) due to the tree being red most of yesterday and all of last night. It's green now and landing things, but it will take it most of today to catch up. Anything time-sensitive that you need landed should be landed manually. [2] Sorry for the

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Jeremy Orlow
Agreed. Can you give us a pointer to the email thread this decision was made on? On Tue, Apr 20, 2010 at 12:12 PM, Alex Russell slightly...@google.comwrote: Hate to ask a dumb question, but why MD5? Isn't it on its last legs as a secure hash? New protocols should be avoiding it. On Tue, Apr

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Maciej Stachowiak
On Apr 20, 2010, at 11:48 AM, Michael Nordman wrote: In webcore, should we use the same impl on all platforms rather than use cryptdll on windows and md5.cc elsewhere? For chrome, I don't think we can have a dependency between WebKit/ WebKit/chromium and /src/base/, and 'base' depending on

Re: [webkit-dev] MD5 in WebCore

2010-04-20 Thread Maciej Stachowiak
On Apr 20, 2010, at 12:45 PM, Jeremy Orlow wrote: Agreed. Can you give us a pointer to the email thread this decision was made on? Discussion was on the IETF hybi list (which is trying to standardize the WebSocket protocol). I encourage anyone in the WebKit community who is interested

[webkit-dev] Volcano

2010-04-20 Thread Eric Seidel
I should have asked sooner... Are any folks stuck here after the WebKit conference due to the volcano? If so, drop me a line. I'd like to at least offer lunch and possibly some in-person hack-time. -eric ___ webkit-dev mailing list

Re: [webkit-dev] Experimental new code reviews

2010-04-20 Thread Adam Barth
At the risk of inspiring friendly competition, I've turned Andrew's demo into a patch: https://bugs.webkit.org/show_bug.cgi?id=37886 Adam On Tue, Apr 20, 2010 at 12:24 PM, Andrew Scherkus scher...@chromium.org wrote: Here's the prototype I made during the hackathon that simply uses a bunch of

Re: [webkit-dev] Volcano

2010-04-20 Thread Philippe Normand
Hi, I'm stuck in SF until sunday, unless I can find a flight earlier... Hacking from a café there on some GTK fullscreen video support :) Philippe On Tue, 2010-04-20 at 13:19 -0700, Eric Seidel wrote: I should have asked sooner... Are any folks stuck here after the WebKit conference due to

Re: [webkit-dev] Volcano

2010-04-20 Thread Evan Martin
I am down for a post-gathering SF hackathon. Name a cafe and time. :) On Tue, Apr 20, 2010 at 2:00 PM, Philippe Normand pnorm...@igalia.com wrote: Hi, I'm stuck in SF until sunday, unless I can find a flight earlier... Hacking from a café there on some GTK fullscreen video support :)

Re: [webkit-dev] Volcano

2010-04-20 Thread Philippe Normand
Currently in 1195 Oak st but it closes at 5pm. Eric suggested Cafe Abir on 1300 Fulton st. I have to go tomorrow afternoon to Sunnyvale for a meeting but in the morning I should be in the Cafe Abir :) I'm open to any suggestion anyway! Currently staying in Haight st around #800, I'd prefer to

[webkit-dev] Leak in UIWebView?

2010-04-20 Thread Thomas Hauk
I've posted this question to devforums.apple.com as well as to Stack Overflow (go to http://stackoverflow.com/questions/2557964/uiwebview-leak-can-someone-confirm to see it) and have not gotten any answer, so now I'm reaching out to webkit-dev for some help. I am developing an iPhone

Re: [webkit-dev] Leak in UIWebView?

2010-04-20 Thread Simon Fraser
On Apr 20, 2010, at 3:35 PM, Thomas Hauk wrote: I've posted this question to devforums.apple.com as well as to Stack Overflow (go to http://stackoverflow.com/questions/2557964/uiwebview-leak-can-someone-confirm to see it) and have not gotten any answer, so now I'm reaching out to