Re: [webkit-dev] parallel painting

2011-06-06 Thread monpar
Is there any way to find out how much time is taken in parsing, layout,rendering, style resolution or java script execution, while loading a webpage. monpar wrote: Is there any way to find out how much time is taken in parsing, layout,rendering, style resolution or java script execution,

Re: [webkit-dev] parallel painting

2011-06-06 Thread Mikhail Naganov
Yes. Use the Timeline panel in WebKit Inspector: http://www.webkit.org/blog/1091/more-web-inspector-updates/#timeline_panel On Mon, Jun 6, 2011 at 14:44, monpar monil.par...@gmail.com wrote: Is there any way to find out how much time is taken in parsing, layout,rendering,  style resolution or

[webkit-dev] CSS optional property names

2011-06-06 Thread Alexandru Chiculita
Hi, Until we have working CSS Regions and CSS Exclusions implementations we will guard the code with ENABLE_CSS_REGIONS and ENABLE_CSS_EXCLUSIONS. We also need to guard the property names in CSSPropertyNames.in and CSSValueKeywords.in using those flags. Has this been discussed before?

Re: [webkit-dev] parallel painting

2011-06-06 Thread Monil Parmar
How to use it for gtk launcher...I think it is for safari. On Mon, Jun 6, 2011 at 4:39 PM, Mikhail Naganov mnaga...@chromium.orgwrote: Yes. Use the Timeline panel in WebKit Inspector: http://www.webkit.org/blog/1091/more-web-inspector-updates/#timeline_panel On Mon, Jun 6, 2011 at 14:44,

[webkit-dev] Multi Threading

2011-06-06 Thread Monil Parmar
Hi All, Thanks for your sugestions, Actually, I want to do profilling of webkit-gtk port, i.e in which section it takes more time like in, parsing, JS, Layout, Rendering etc. so i can try for optimization in those section. Use of timestamp in functions will not benefit me currently , as i dont the

Re: [webkit-dev] Cherry-Pick Bug Comments

2011-06-06 Thread Ademar Reis
On Sun, Jun 5, 2011 at 2:03 AM, Eric Carlson eric.carl...@apple.com wrote: On Jun 3, 2011, at 2:30 PM, Adam Barth wrote: Either (1) or (2) is fine.  Please pick one and do it.  The status quo is very annoying.   Yes, please! I'll post these comments only on [Qt] bugs until we implement a

Re: [webkit-dev] 6th Annual WebKit Open Source Party!

2011-06-06 Thread Adele Peterson
Just a reminder that the party is this Wednesday evening! - Adele On May 16, 2011, at 4:26 PM, Adele Peterson wrote: Hi all, It has been another great year for the WebKit project, and it's time to celebrate! Apple's Safari/WebKit team will be hosting the 6th Annual WebKit Open Source

Re: [webkit-dev] CSS optional property names

2011-06-06 Thread Eric Seidel
I think our .in files get pre-processed. So you can use normal c++ preprocessor definitions. #if defined(ENABLE_CSS_REGIONS) ENABLE_CSS_REGIONS But I could be remembering wrong... On Mon, Jun 6, 2011 at 4:25 AM, Alexandru Chiculita ach...@adobe.com wrote: Hi, Until we have working CSS

[webkit-dev] WebKit port to my own system?!

2011-06-06 Thread Soheil Servati Beiragh
I was wondering if there is any version or project of webkit that can be used to port on my own system? I mean a version that doesn't use GTK or...to access frame buffer. A version or a project that uses dumb frame buffer and I can fill the place of GTK or ...for it?   Soheil Servati Beiragh

Re: [webkit-dev] WebKit port to my own system?!

2011-06-06 Thread Eric Seidel
No, there is no stock or template port of webkit. Chromium might be the closest thing to such with it's PlatformBridge abstraction (since webkit runs inside a restricted sandbox in chromium and can't talk always directly to the OS). But you're better off starting with whatever port is closest to

Re: [webkit-dev] WebKit port to my own system?!

2011-06-06 Thread Eric Seidel
I don't understand what you're asking. I am not sure WebKit is your answer. You may want to try asking on webkit-help, which deals with using webkit. This list deals with developing WebKit itself. -eric On Mon, Jun 6, 2011 at 11:40 AM, Soheil Servati Beiragh sserv...@yahoo.com wrote: The

Re: [webkit-dev] Parallel CSS styling

2011-06-06 Thread Simon Fraser
Selector matching performance has been improved considerably via https://bugs.webkit.org/show_bug.cgi?id=49876 and other bugs. With those changes, I would expect that the win from using threading is rather low. Simon On Jun 6, 2011, at 1:16 PM, Kulanthaivel Palanichamy wrote: Hi All, At

Re: [webkit-dev] Parallel CSS styling

2011-06-06 Thread Eric Seidel
Do you have statistics on how much total time rendering flickr.com is in CSS/Style code at all? I believe it to be very low. -eric On Mon, Jun 6, 2011 at 1:16 PM, Kulanthaivel Palanichamy kulanthai...@codeaurora.org wrote: Hi All, At Qualcomm Innovation Center we have been working on a

[webkit-dev] Proposal: Avoiding fastMalloc(0) in WebKit

2011-06-06 Thread Eric Seidel
I have posted a patch to (optionally) ASSERT whenever fastMalloc is called with 0 size: https://bugs.webkit.org/show_bug.cgi?id=55097 After fixing https://bugs.webkit.org/show_bug.cgi?id=55091 for a large performance win in the HTML parser (by avoiding a single fastMalloc(0) call) I now believe

[webkit-dev] Support for EFL port of WebKit2

2011-06-06 Thread Gyuyoung Kim
Hello Webkit Developers, In parallel to the active support of WebKit EFL port, on behalf of Samsung platform team, I would like to announce that Samsung will make the best effort to build up the WebKit2 EFL port. Samsung wanna work with WebKit2 maintainers closely for the improvement of WebKit2

Re: [webkit-dev] Cross-platform fonts for Layout Tests

2011-06-06 Thread Hao Zheng
Yes, actually in Skia, Chromium/Linux uses a noop gamma implementation in SkFontHost_gamma_none.cpp; however, if you use a substantial implementation in SkFontHost_gamma.cpp, there will be much image mismatch on Chromium/Linux for every font including Ahem. The slight differences are on font

Re: [webkit-dev] Cross-platform fonts for Layout Tests

2011-06-06 Thread Eric Seidel
So are we saying it's impossible to have matching results across all platforms if a test involves any text (in any font)? I know it's certainly possible to have pixel-results for tests which do not involve text match across all platforms (like SVG or images or css styling, etc.) Or is all this