[webkit-dev] HTML5 Web Socket Design Doc

2009-06-29 Thread
Hi, yuzo, tyoshino and ukai @chromium.org start working to implement HTML5 Web Socket and write design doc. http://docs.google.com/View?id=dfm7gfvg_0fpjg22gh Any comments? We'd welcome if you could give us feedback on our design doc. Thanks! Fumitoshi Ukai

Re: [webkit-dev] HTML5 Web Socket Design Doc

2009-07-12 Thread
. The patch adding DumpRenderTree support for testing websockets (along with whatever server component it will need) Anyone else on this list, feel free to chime in if I'm giving the wrong advice here. :) Ojan On Mon, Jun 29, 2009 at 1:03 AM, Fumitoshi Ukai (鵜飼文敏)u...@chromium.org

Re: [webkit-dev] Runtime setting for incomplete features

2009-10-05 Thread
It is requested to be turned on at the beginning of Web Sockets implementation so that it will be tested as it is brought up. https://bugs.webkit.org/show_bug.cgi?id=27206 Is is ok to turn off by default from this point of view? On Tue, Oct 6, 2009 at 1:57 PM, Darin Fisher da...@chromium.org

Re: [webkit-dev] Runtime setting for incomplete features

2009-10-05 Thread
So, is it fine to make WebSockets enable by default? For now, there are no SocketStreamHandle implementation. so even enabling WebSockets in Settings, it is the almost same that the feature is not available.. -- ukai On Tue, Oct 6, 2009 at 2:04 PM, Maciej Stachowiak m...@apple.com wrote: On

Re: [webkit-dev] git.webkit.org/WebKit.git out of sync from svn repository?

2009-11-08 Thread
On Sat, Nov 7, 2009 at 6:10 AM, William Siegrist wsiegr...@apple.comwrote: On Nov 5, 2009, at 8:32 PM, Fumitoshi Ukai (鵜飼文敏) wrote: I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now. Even I clone git repository from git://git.webkit.org/WebKit.git again

Re: [webkit-dev] Staging WebSocket protocol deployment

2009-11-17 Thread
On Wed, Nov 18, 2009 at 6:08 AM, Maciej Stachowiak m...@apple.com wrote: On Nov 15, 2009, at 5:18 PM, Yuzo Fujishima wrote: Hi, I'm against prefixing with webkit- because of the following reasons. Reason 1: It connotes that the feature is experimental. That means there will be less

[webkit-dev] WebSocket threading design

2009-12-08 Thread
Right now, WebSocket uses WebSocketChannel and SocketStreamHandle directly, but this might not work well if the WebSocket is running on another thread (i.e. worker threads). SocketStreamHandleCFNet is expected to run on loader process/main thread, so attachment 44393 in bug 32214 won't work well

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread
On Thu, Jan 14, 2010 at 10:34 AM, Alexey Proskuryakov a...@webkit.org wrote: On 13.01.2010, at 17:00, Darin Adler wrote: 6.87 secs: websocket/tests/frame-lengths.html This test verifies that packet size computation logic is correct for all message sizes from 0 to 1025. We've had bugs in

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread
On Thu, Jan 14, 2010 at 12:29 PM, Alexey Proskuryakov a...@webkit.org wrote: 13.01.2010, в 19:16, Fumitoshi Ukai (鵜飼文敏) написал(а): 6.87 secs: websocket/tests/frame-lengths.html This test verifies that packet size computation logic is correct for all message sizes from 0 to 1025. We've

[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-21 Thread
could put it in WTF. I don't know if that would help Chromium's dependency issues. Regards, Maciej On Tue, Apr 20, 2010 at 4:12 AM, Maciej Stachowiak m...@apple.com wrote: On Apr 20, 2010, at 3:32 AM, Fumitoshi Ukai (鵜飼文敏) wrote: I'm implementing new protocol of WebSocket ( http

Re: [webkit-dev] Python on the Tiger build bot

2010-05-13 Thread
I heard on #webkit that the Tiger bot has been on Python 2.5 for some time, and found r+ for https://bugs.webkit.org/show_bug.cgi?id=38886 and https://bugs.webkit.org/show_bug.cgi?id=38822. I believe we have consensus to use Python 2.5 (or later) for webkit development environment. I tried to

Re: [webkit-dev] Ancient patches in pending-review

2010-05-16 Thread
On Fri, May 14, 2010 at 02:31, Alexey Proskuryakov a...@webkit.org wrote: 13.05.2010, в 10:19, David Levin написал(а): Should we just r- and ask that it wait for conceptual issues to be resolved in IETF spec review first (unless for some reason it is needed quickly and that takes too

Re: [webkit-dev] Flaky test hit list

2010-09-30 Thread
On Thu, Sep 30, 2010 at 15:31, Adam Barth aba...@webkit.org wrote: Tonight I wrote a new webkit-patch command for detecting flaky tests. Here the tests that have flaked out on the Snow Leopard (Tests) build bot during the last 2000 revisions. This makes a good hit list of tests to fix to

Re: [webkit-dev] Flaky test hit list

2010-10-01 Thread
On Fri, Oct 1, 2010 at 12:03, Adam Barth aba...@webkit.org wrote: https://bugs.webkit.org/show_bug.cgi?id=46956 Unfortunately, it doesn't solve the whole problem. It does seem to reduce the flakiness by a lot though. Thanks! I think it might be race between DRT and pywebsocekt server,