Re: [webkit-dev] Fwd: Point 3 of the WebKit Style Guidelines (indenting code inside namespaces in headers)

2009-10-07 Thread Sam Weinig
On Wed, Oct 7, 2009 at 10:02 PM, Eric Seidel wrote: > Now from the right email address... > > > -- Forwarded message -- > From: Eric Seidel > Date: Thu, Oct 8, 2009 at 1:02 AM > Subject: Re: [webkit-dev] Point 3 of the WebKit Style Guidelines > (indenting code inside namespaces i

[webkit-dev] Fwd: Point 3 of the WebKit Style Guidelines (indenting code inside namespaces in headers)

2009-10-07 Thread Eric Seidel
Now from the right email address... -- Forwarded message -- From: Eric Seidel Date: Thu, Oct 8, 2009 at 1:02 AM Subject: Re: [webkit-dev] Point 3 of the WebKit Style Guidelines (indenting code inside namespaces in headers) To: David Levin Cc: Maciej Stachowiak , webkit-dev Devel

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

2009-10-07 Thread Alex Milowski
After chatting with David Hyatt, the answer seems to be, in my own words, "smack your fingers with a ruler." My current layout() method leaves with the RenderMathRow instance and some of its descendants needing layout. That's a violation of the API contract for layout(). I should make sure I don

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

2009-10-07 Thread Alex Milowski
On Tue, Oct 6, 2009 at 9:09 PM, Dan Bernstein wrote: > > 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 documen

Re: [webkit-dev] Regarding WebKit Support Libraries

2009-10-07 Thread George Staikos
Hi Jason, We actually changed our network implementation long ago. The one that is in sync with the tree is part of the private support library and we won't be releasing source for it at this time. The one that is in the repository and not in sync is in fact not used, but at one time d

[webkit-dev] Regarding WebKit Support Libraries

2009-10-07 Thread Jason Rukman
George, I was wondering if you are intending to push this implementation into the current webkit respository at some point. It looks like the code in your repository is out of sync with the current tree. If anyone else has had success working with wininet on windows we'd like to know so we can a

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

2009-10-07 Thread Alexey Proskuryakov
06.10.2009, в 0:39, Maciej Stachowiak написал(а): 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 concerned, that's ok for testing, even though we would not want to shi

Re: [webkit-dev] Partial SVG repaint

2009-10-07 Thread Eric Seidel
SVG was designed to support this, it's just not been turned on yet. It would be one little patch and a lot of little patches afterwards to fix things that break. :) You'd just add a checks in RenderSVGContainer and RenderPath to see if the dirty rect intersected the repaintRectInLocalCoordinates.

Re: [webkit-dev] compileOpCallSetupArgs

2009-10-07 Thread Geoffrey Garen
Hi Zoltan. Sounds like a bug. (I tend to dislike #ifdefs like JIT_OPTIMIZE_CALL because of their tendency to fall prey to bit rot like this.) Loading the callee into regT1, regT0 is best. I'd recommend changing ! JIT_OPTIMIZE_CALL to respect that convention. Geoff On Oct 7, 2009, at 6:54

[webkit-dev] compileOpCallSetupArgs

2009-10-07 Thread Zoltan Herczeg
Hi, I am not sure this is a bug, so I am curios about your opinion. Currently, I am trying to enable JSVALUE32_64 on ARM. First step, as usual, with all optimizations disabled. Unfortunately, I got a crash. If JIT_OPTIMIZE_CALL is disabled, callee is loaded to regT1 and regT2, while if enabled, to

Re: [webkit-dev] webkit apocrypha + benchmarking

2009-10-07 Thread Holger Freyther
On Wednesday 07 October 2009 12:36:24 Akos Kiss wrote: > Hi All, > > I hope that a lot of you are regularly visiting our benchmarking site at > http://www.sed.hu/webkit :) . As you might know, the performance and > memory consumption of JavaScriptCore is measured on x86 Linux and Mac > platforms,

[webkit-dev] webkit apocrypha + benchmarking

2009-10-07 Thread Akos Kiss
Hi All, I hope that a lot of you are regularly visiting our benchmarking site at http://www.sed.hu/webkit :) . As you might know, the performance and memory consumption of JavaScriptCore is measured on x86 Linux and Mac platforms, on several benchmark suites, on a regular basis, and visualize

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

2009-10-07 Thread zaheer ahmad
hi, My comments below. Pls correct me if my understanding is inaccurate. On Wed, Oct 7, 2009 at 2:37 AM, Buakaw San wrote: > Thanks for your input. I have attached the flow chart for the Mozilla's > Layout engine, how would you say the WebKit data flow differs from this > diagram? > > I'm a litt