Re: [webkit-dev] Add a set of new APIs for the Custom Scheme and Content Handler.

2011-11-29 Thread Maciej Stachowiak
On Nov 28, 2011, at 8:54 PM, DongWoo Im wrote: Hi webkit-dev, I would like to let you know that I'm planning to add a set of new APIs for the Custom Scheme and Content Handler. ** Specification link : http://dev.w3.org/html5/spec/Overview.html#custom-handlers ** Bugs - Custom

Re: [webkit-dev] CORS Access-Control-Expose-Headers not supported by webkit?

2011-11-29 Thread Maciej Stachowiak
On Nov 21, 2011, at 2:00 PM, Ojan Vafai wrote: Just curious, how is it different from Access-Control-Allow-Headers? Access-Control-Allow-Headers is a response header which signals that specific custom request headers may be sent by the client.

Re: [webkit-dev] Add a set of new APIs for the Custom Scheme and Content Handler.

2011-11-29 Thread Maciej Stachowiak
Looks like I was mistaken and misread the spec, so I withdraw this comment. Do other browsers that implement the register functions also implement the related isRegistered and unregister functions? - Maciej On Nov 29, 2011, at 12:08 AM, Maciej Stachowiak wrote: On Nov 28, 2011, at 8:54

[webkit-dev] Reg. Use of CAIRO_EXTEND_REPEAT

2011-11-29 Thread Vicky Tux
Can anybody explain what is the use of 'cairo_pattern_set_extend(pattern. get(), CAIRO_EXTEND_PAD);' in http://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp ..? Regards, Vicky. ___ webkit-dev mailing

Re: [webkit-dev] squirrefish extreme on Arm.

2011-11-29 Thread vahagvahag
Hi all. I have been studing about squirrefish extreme for last several days but can't find answers to several quations I need. 1. How can I dump compiling process? For instanance in GCC I can compile with -da -fdump_tree_all and then get all passes up to assembler generation. So is there any way

Re: [webkit-dev] Add a set of new APIs for the Custom Scheme and Content Handler.

2011-11-29 Thread Soo-Hyun Choi
On Tue, Nov 29, 2011 at 17:59, Maciej Stachowiak m...@apple.com wrote: Looks like I was mistaken and misread the spec, so I withdraw this comment. Do other browsers that implement the register functions also implement the related isRegistered and unregister functions? Opera dev team has

Re: [webkit-dev] Simplifying hub classes (was Cleaning up directories in WebCore)

2011-11-29 Thread Darin Adler
On Nov 20, 2011, at 8:55 PM, Adam Barth wrote: On Sun, Nov 20, 2011 at 8:36 PM, Hajime Morrita morr...@google.com wrote: One traditional pattern is to split a big class into a set small classes plus a hub class like how Adam has done for original Frame. ^^^ The work to split up Frame was

Re: [webkit-dev] squirrefish extreme on Arm.

2011-11-29 Thread Gavin Barraclough
-d should work fine on ARM - check your build settings, is any #ifndef NDEBUG code getting built? In addition there are a set of switches in dfg/DFGCommon.h that include ones to enable further dumping of the intermediate representation. G. On Nov 29, 2011, at 2:51 AM, vahagvahag wrote: Hi

[webkit-dev] About IDL files

2011-11-29 Thread HuaJeffrey
I have some idl files to define some new javascript object interfaces. I am expected to implement some plugins for them.Is it possible to auto generate some stub code using the idl files?Or do I have to implement those plugins which support those javascript objects based on idl files one by

[webkit-dev] How to use IDL files?

2011-11-29 Thread Jeffrey Hua
I have some idl files to define some new javascript object interfaces. I am expected to implement some plugins for them. Is it possible to auto generate some stub code using the idl files? Or do I have to implement those plugins which support those javascript objects based on idl files one by one?

Re: [webkit-dev] Using C++ constant local variables in WebKit

2011-11-29 Thread Darin Adler
On Nov 28, 2011, at 1:38 PM, David Kilzer wrote: In a discussion on Bug 71921, Antti, Darin Adler and I started a discussion about using C++ constant pointers in WebKit. Does the WebKit community have a consensus opinion on the matter? I thought we were discussing local variables in

Re: [webkit-dev] Using C++ constant local variables in WebKit

2011-11-29 Thread Ryosuke Niwa
As I stated on the other thread, I'm against using const pointers. However, I see benefits in using const local variables. On Tue, Nov 29, 2011 at 6:19 PM, Darin Adler da...@apple.com wrote: I thought we were discussing local variables in general, not pointer-typed ones specifically. * Pros

Re: [webkit-dev] Using C++ constant local variables in WebKit

2011-11-29 Thread Ryosuke Niwa
On Tue, Nov 29, 2011 at 6:42 PM, Ryosuke Niwa rn...@webkit.org wrote: - Prevents misuse of variable in a later patch (by a different author) through enforcement of const-ness. Prevents one specific type of misuse: Setting the variable to another value. And that may not be misuse despite

Re: [webkit-dev] Add a set of new APIs for the Custom Scheme and Content Handler.

2011-11-29 Thread Soo-Hyun Choi
On Wed, Nov 30, 2011 at 02:05, David Levin le...@chromium.org wrote: Please don't rollback in the change that was rolled out. Feel free to use it as a guide but that patch was flawed in that it exposed an api which did nothing on some platforms which would break feature detection. dave Sure

[webkit-dev] What is the reason for changing JavaScript parser from bison parser(LR) to Top-To-Down Recursion parser?

2011-11-29 Thread PandaCanFly
Hello everyone, I am researching WEBKIT and coming up against difficulty about Javascript parser。As I Know, WEBKIT of old version uses the bison parser to interpret javascript code. But WEBKIT of recently version doesn't uses bison parser. Instead, WEBKIT of recently version uses