Re: [webkit-dev] MathML Project - Interested?

2009-10-06 Thread Brent Fulgham
Hi Alex, On Oct 5, 2009, at 1:04 PM, Alex Milowski wrote: I'd like to work on this MathML project in conjunction with those of you who might be interested in using it in the near future. I'd also welcome any help. If you are interested, even as an observer, let me know. I am very

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

2009-10-06 Thread Maciej Stachowiak
On Oct 5, 2009, at 10:08 PM, Fumitoshi Ukai (鵜飼文敏) wrote: 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.. As far as I'm

Re: [webkit-dev] [chromium-dev] Learning Webkit: High Level Webkit overview?

2009-10-06 Thread James Robinson
On Sun, Oct 4, 2009 at 8:19 AM, Buakaw San buakaw@gmail.com wrote: There is a document called How Chromium Displays Web Pages (http:// dev.chromium.org/developers/design-documents/displaying-a-web-page-in- chrome), however I haven't found an equivalent page for Webkit. E.g. How Webkit

Re: [webkit-dev] Review Flag Requestee field

2009-10-06 Thread Geoffrey Garen
I'm convinced now, too. Let's disable it. Geoff On Oct 5, 2009, at 12:53 PM, Maciej Stachowiak wrote: On Oct 5, 2009, at 12:23 PM, Eric Seidel wrote: It seems that the requestee field is a source of confusion for new contributers. Especially so when the new contributor comes from

Re: [webkit-dev] Review Flag Requestee field

2009-10-06 Thread Eric Seidel
Done. Unchecked: [ ] specifically requestable (users can ask specific other users to set flags of this type as opposed to just asking the wind) If you have any troubles, please ask the wind. -eric On Tue, Oct 6, 2009 at 2:25 PM, Geoffrey Garen gga...@apple.com wrote: I'm convinced now, too.

Re: [webkit-dev] Documenting common null pointer errors

2009-10-06 Thread Adam Barth
On Tue, Oct 6, 2009 at 2:49 PM, Jeremy Orlow jor...@chromium.org wrote: Did this ever get linked from the home page? Nope. The web site is in SVN. Go ahead and file a bug and attach a patch. :) Adam ___ webkit-dev mailing list

Re: [webkit-dev] Documenting common null pointer errors

2009-10-06 Thread Jeremy Orlow
k On Tue, Oct 6, 2009 at 3:00 PM, Adam Barth aba...@webkit.org wrote: On Tue, Oct 6, 2009 at 2:49 PM, Jeremy Orlow jor...@chromium.org wrote: Did this ever get linked from the home page? Nope. The web site is in SVN. Go ahead and file a bug and attach a patch. :) Adam

[webkit-dev] WebGL demos

2009-10-06 Thread Marc Grabanski
I compiled webkit from source and couldn't get the WebGL demos working (osx 10.6 on macbook pro). Are there any special settings to get WebGL working. I'd like to view the demos of WebGL and play around with the source / API. Sincerely, -- Marc Grabanski: http://marcgrabanski.com LinkedIn:

[webkit-dev] Guided bug reporting on bugs.webkit.org

2009-10-06 Thread Tor Arne Vestbø
Hey, Right now we have the bug reporting guidelines, here: http://webkit.org/quality/bugwriting.html And the actual form here: https://bugs.webkit.org/enter_bug.cgi?product=WebKit Would it make sense to expand the create-form template in Bugzilla to join these two in a guided

[webkit-dev] Partial SVG repaint

2009-10-06 Thread Patrick Roland Gansterer
I want to fix https://bugs.webkit.org/show_bug.cgi?id=30055. What is the prefered solution? Where is the best place to start? If i start the work i might ends up in one big patch. So what are the code areas i can create single patches from? Patrick

[webkit-dev] Learning Webkit: High Level Webkit overview?

2009-10-06 Thread Buakaw San
There is a document called How Chromium Displays Web Pages (http:// dev.chromium.org/developers/design-documents/displaying-a-web-page-in- chrome), however I haven't found an equivalent page for Webkit. E.g. How Webkit Renders Web Pages. The Chromium document doesn't go into the Webkit part. There

Re: [webkit-dev] WebGL demos

2009-10-06 Thread Simon Fraser
There's a runtime pref: defaults write com.apple.Safari WebKitWebGLEnabled -bool YES Simon On Oct 2, 2009, at 10:44 AM, Marc Grabanski wrote: I compiled webkit from source and couldn't get the WebGL demos working (osx 10.6 on macbook pro). Are there any special settings to get WebGL working.

[webkit-dev] MIPS JIT Supports

2009-10-06 Thread Fu, Chao-Ying
Hi All, Please check the patch for MIPS JIT supports. https://bugs.webkit.org/show_bug.cgi?id=30144 Thanks! Regards, Chao-ying ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] MIPS JIT Supports

2009-10-06 Thread David Kilzer
If you'd like a patch reviewed, please set the review? flag on the patch in bugs.webkit.org. For more information, see: http://webkit.org/coding/contributing.html Dave - Original Message From: Fu, Chao-Ying f...@mips.com To: webkit-dev@lists.webkit.org Sent: Tuesday, October 6,

[webkit-dev] How does Zooming Work?

2009-10-06 Thread Alex Milowski
What exactly happens during a zoom (command +/-) ? I have code that works well but layout doesn't seem to happen after a zoom in/out operation. If I then resize the window, that forces a layout for the zoomed size and things adjust themselves appropriately (because layout() eventually gets

Re: [webkit-dev] How does Zooming Work?

2009-10-06 Thread Dan Bernstein
On Oct 6, 2009, at 8:49 PM, Alex Milowski wrote: What exactly happens during a zoom (command +/-) ? Depends on the flavor of zoom (“full-page” zoom vs. text-only zoom), but in both cases, a full style recalculation for the document is forced. I have code that works well but layout