Re: [webkit-dev] Invoking script from NPAPI plugin

2010-03-12 Thread Christopher White
Can this really be a bug? Aren't there plenty of current plugins that do callbacks like Flash (ActionScript to JabaScript bridge). What about Chrome plugins? Do they have the same issues? I assume they are nsapi as well. On Mar 11, 2010, at 10:58 AM, Darin Adler wrote: On Mar 11, 2

Re: [webkit-dev] Objective-C Plug-in for Linux

2010-03-09 Thread Christopher White
Sorry for the dumb question. i found my answer further below in the "What Kind Of Plug-in Should I Develop?". On Tue, Mar 9, 2010 at 4:55 AM, Christopher White wrote: > From: > > > http://developer.apple.com/mac/library/documentation/InternetWeb/Conceptual/WebKit_Pl

[webkit-dev] WebKitGTK+ on Snow Leopard

2010-03-09 Thread Christopher White
Has someone actually been able to compile WebKitGTK+ on Snow Leopard? I have retrieved all the dependancies via Mac ports and fink and always seem to get hung up on libjpeg where the compiles believes the library is missing when it is not. Cheers, Chris __

[webkit-dev] Objective-C Plug-in for Linux

2010-03-09 Thread Christopher White
From: http://developer.apple.com/mac/library/documentation/InternetWeb/Conceptual/WebKit_PluginProgTopic/Concepts/AboutPlugins.html#//apple_ref/doc/uid/30001248-BAJGJJAH It states that "Although the API is not cross-platform, any plug-in created in this fashion can be used in Safari and all other

Re: [webkit-dev] DOM Serialization?

2010-01-24 Thread Christopher White
23, 2010, at 8:18 AM, Christopher White wrote: > > > What are the general thoughts whether a binary serialization is possible > retaining all needed information for rendering? > > My general thought is that it is not practical. > >-- Darin > > _

Re: [webkit-dev] DOM Serialization?

2010-01-23 Thread Christopher White
What are the general thoughts whether a binary serialization is possible retaining all needed information for rendering? On Fri, Jan 22, 2010 at 9:19 AM, Darin Adler wrote: > On Jan 22, 2010, at 9:12 AM, Adam Treat wrote: > > > Correct me if I'm wrong, but he said without re-parsing. The WebArch

Re: [webkit-dev] DOM Serialization?

2010-01-22 Thread Christopher White
Yes. What I am looking into is creating a binary version of the document (i.e. DOM including all rendering information). That way, when viewing the content, I can skip the parse step and just put the DOM into memory and start the layout. Time wash question? So I am trying to save time loading t

[webkit-dev] DOM Serialization?

2010-01-22 Thread Christopher White
Is it possible to save the DOM resulting from the parsing of HTML / CSS into a file and then read it back instead of re-parsing the HTML (similar to Java object serialization). Does it save any time or is it a wash? I know there is a dump render tree function but does it save everything you need s