[webkit-dev] Reconstructing a RenderTree from a DOM

2009-06-11 Thread Daniel Dreiberg
Hi, After the page loading is done (HTML/CSS has been parsed, JS has been executed), webkit builds a DOM and RenderTree. It is possible that I detach the RenderTree from the DOM (removed that in memory), and that later on , reconstructing the RenderTree for that DOM? and re-attached the RenderTree

[webkit-dev] ubuntu build problem

2009-06-11 Thread anurag uniyal
I have checked out revision 44600 today and it gives me build problem is there some stable version which I should be using? I am building it on ubuntu machine with command ./build-webkit --wx --wx-args=wxgc wxpython ranlib /home/anushri/try/WebKit/WebKitBuild/Release/libjscore.a g++ -o

Re: [webkit-dev] ubuntu build problem

2009-06-11 Thread anurag uniyal
I also tried to build source of nightly build WebKit-r44591 but it also gives same problem. rgds anurag From: anurag uniyal anuraguni...@yahoo.com To: webkit-dev@lists.webkit.org Sent: Thursday, 11 June, 2009 1:39:28 PM Subject: ubuntu build problem I have

[webkit-dev] NPAPI Plugin on openembedded

2009-06-11 Thread Graffine
Hi all: I port webkit/Gtk+ to openembedded and try to test flash plugin on GtkLauncher. I take qemu to simulate the embedded environment, incluing arm linux and x86 linux platform. I found that webkit cannot load any plugins on x86 linux, but it can work well on arm linux. The following is my

Re: [webkit-dev] arm jit

2009-06-11 Thread Zoltan Herczeg
Hi guys at Apple, it looks we are in the way of the train. You have plans, we don't know about them, you have commit rights, we don't, so the tides are against us. Hints on the mailing lists are scarce, although a year ago someone from you asked whether others are interested in design

Re: [webkit-dev] NPAPI Plugin on openembedded

2009-06-11 Thread Holger Freyther
On Thursday 11 June 2009 12:09:37 Graffine wrote: Hi all: I port webkit/Gtk+ to openembedded and try to test flash plugin on GtkLauncher. I take qemu to simulate the embedded environment, incluing arm linux and x86 linux platform. I found that webkit cannot load any plugins on x86 linux, but

Re: [webkit-dev] GDOM-Binding: using gdom_css_style_sheet_add_rule()

2009-06-11 Thread Luke Kenneth Casson Leighton
On 6/10/09, Leon Winter l...@ring0.de wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, the GDOM-Binding provides functions for setting up global CSS rules and manipulating them. I'm interested in this functions, especially in: WEBKIT_API glong gdom_css_style_sheet_add_rule

Re: [webkit-dev] NPAPI Plugin on openembedded

2009-06-11 Thread Graffine
Hi: Sorry for ambiguous describing. My testing environment was list as follows: 1. qemu arm linux (based on poky linux) 2. qemu x86 linux (based on poky linux) 3. Ubuntu 8.10 I adopt poky linux as my openembedded developing environment. The flash plugin can be loaded on case 1 and case 3, but

Re: [webkit-dev] How to interrupt Webkit Dump Render Tree output

2009-06-11 Thread Lucius Fox
On Wed, Jun 10, 2009 at 1:58 PM, tonikitoo (Antonio Gomes)toniki...@gmail.com wrote: On Mon, Jun 1, 2009 at 1:31 PM, Simon Frasersimon.fra...@apple.com wrote: There is a method on RenderObject to get the correct absolute coordinates of the renderer, which correctly takes transforms, scrolling

Re: [webkit-dev] arm jit

2009-06-11 Thread Toshiyasu Morita
--- On Wed, 6/10/09, Gavin Barraclough barraclo...@apple.com wrote:   If you consider calling a JS function with too few arguments as being akin to = invoking a C++ method with some defaulted parameters not-provided, then it is also the responsibility of code generated for the call to such

[webkit-dev] Trampoline problem

2009-06-11 Thread Toshiyasu Morita
I've tracked down a crash in our JIT port to a problem with the trampoline generation. The symptom of the crash is: the ScopeChain becomes corrupted and acquires the value of 1. void JIT::privateCompileCTIMachineTrampolines(RefPtrExecutablePool* executablePool, void**

Re: [webkit-dev] Expected behavior of Mutex.lock()

2009-06-11 Thread Dmitry Titov
Then perhaps all implementations could ASSERT in debug on mutex reentrancy to help discover where differences in behavior are accidentally 'used' (a stuck thread may sometimes mask some other issues). It's not good to have this kind of differences in 'cross-platform' code, sooner or later it'll

[webkit-dev] Build number for Safari 4 final

2009-06-11 Thread Sajesh
Hi All, Which is build/release of Webkit is Safari 4 final ? Thanks and regards Sajesh ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] How to execute a JavaScript containing site with JSCore?

2009-06-11 Thread Geoffrey Garen
Hi Sebastian. JSEvaluateScript can only evaluate JavaScript; it can't parse HTML. Cheers, Geoff On Jun 10, 2009, at 10:05 PM, Sebastian Linke wrote: Hi, based on my experiences when I ran some javascript code on a webkit context, I was trying to do the same with normal html code. It may

Re: [webkit-dev] arm jit

2009-06-11 Thread Geoffrey Garen
Can the arity check be performed at compile time as in C++? C++ can perform arity checks at compile time because C++ uses early binding. JavaScript uses late binding. Geoff___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Trampoline problem

2009-06-11 Thread Gavin Barraclough
On Jun 11, 2009, at 10:20 AM, Toshiyasu Morita wrote: I've tracked down a crash in our JIT port to a problem with the trampoline generation. The symptom of the crash is: the ScopeChain becomes corrupted and acquires the value of 1. void

Re: [webkit-dev] arm jit

2009-06-11 Thread Oliver Hunt
On Jun 11, 2009, at 9:59 AM, Toshiyasu Morita wrote: --- On Wed, 6/10/09, Gavin Barraclough barraclo...@apple.com wrote: If you consider calling a JS function with too few arguments as being akin to = invoking a C++ method with some defaulted parameters not-provided, then it is also

Re: [webkit-dev] Expected behavior of Mutex.lock()

2009-06-11 Thread Jeremy Orlow
Agreed the ASSERT needn't be Windows only. It's probably better to ASSERT rather than deadlock on platforms without reentrant implementations. :-) I'll file a bug for this (and might just fix it) in a couple days if there are no more comments. J On Thu, Jun 11, 2009 at 10:39 AM, Dmitry Titov

Re: [webkit-dev] arm jit

2009-06-11 Thread Geoffrey Garen
it looks we are in the way of the train. You have plans, we don't know about them, you have commit rights, we don't, so the tides are against us. If you're interested in review or commit rights, they're granted based on a track record of good work, good judgement, and good collaboration.

Re: [webkit-dev] A Javascript Programming Environment for Safari 4

2009-06-11 Thread Jeremy Orlow
On Wed, Jun 10, 2009 at 7:22 PM, David Goehrig d...@nexttolast.com wrote: Hello Webkitties, Let me say, congratulations on getting so close to having real HTML5 support. While there are still some rough edges, Webkit has been making some huge strides towards making the web a nice place to

Re: [webkit-dev] arm jit

2009-06-11 Thread Zoltan Herczeg
If you're interested in review or commit rights, they're granted based on a track record of good work, good judgement, and good collaboration. You can read more about the policy here: http://webkit.org/coding/commit-review-policy.html . Please work on your collaboration skills. Right now,

[webkit-dev] Memory usage for Webkit

2009-06-11 Thread James Howlett
Hi, Is there any plan to reduce the memory usage of Webkit so that it uses less memory (runs better) on phone? if yes, where can I find ideas to reduce memory usage of Webkit (e.g. bug report, roadmap)? Thank you. ___ webkit-dev mailing list

Re: [webkit-dev] Memory usage for Webkit

2009-06-11 Thread Mark Rowe
On 2009-06-11, at 12:50, James Howlett wrote: Hi, Is there any plan to reduce the memory usage of Webkit so that it uses less memory (runs better) on phone? if yes, where can I find ideas to reduce memory usage of Webkit (e.g. bug report, roadmap)? Memory footprint is an area that we

Re: [webkit-dev] Memory usage for Webkit

2009-06-11 Thread Zoltan Herczeg
Hi, http://webkit.sed.hu/node/15 As you can see on the charts there, you should consider the whole environment not just WebKit alone. Large amount of resources are allocated by other libs as well. Zoltan On 2009-06-11, at 12:50, James Howlett wrote: Hi, Is there any plan to reduce the

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Ojan Vafai
On Sat, Jun 6, 2009 at 7:14 PM, Ojan Vafai o...@google.com wrote: On Sun, Jun 7, 2009 at 7:51 AM, Mark Rowe mr...@apple.com wrote: There are also concerns about access to the data store of the application, backup procedures, etc. Our existing servers are well understood in this regard.

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Mark Rowe
On 2009-06-11, at 15:16, Ojan Vafai wrote: On Sat, Jun 6, 2009 at 7:14 PM, Ojan Vafai o...@google.com wrote: On Sun, Jun 7, 2009 at 7:51 AM, Mark Rowe mr...@apple.com wrote: There are also concerns about access to the data store of the application, backup procedures, etc. Our existing

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Peter Kasting
On Thu, Jun 11, 2009 at 3:21 PM, Mark Rowe mr...@apple.com wrote: Given what has been said so far I'm still not clear why Rietvald is a better option than Review Board. I think it's because we have a bunch of people who are (a) familiar with using it and/or (b) work on it and can fix any

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Joe Mason
Mark Rowe wrote: On 2009-06-11, at 15:16, Ojan Vafai wrote: On Sat, Jun 6, 2009 at 7:14 PM, Ojan Vafai o...@google.com mailto:o...@google.com wrote: On Sun, Jun 7, 2009 at 7:51 AM, Mark Rowe mr...@apple.com mailto:mr...@apple.com wrote: There are also concerns about access

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Jeremy Orlow
On Thu, Jun 11, 2009 at 4:50 PM, Joe Mason joe.ma...@torchmobile.comwrote: Mark Rowe wrote: On 2009-06-11, at 15:16, Ojan Vafai wrote: On Sat, Jun 6, 2009 at 7:14 PM, Ojan Vafai o...@google.com mailto: o...@google.com wrote: On Sun, Jun 7, 2009 at 7:51 AM, Mark Rowe mr...@apple.com

Re: [webkit-dev] to reitveld or not to reitveld

2009-06-11 Thread Jeremy Orlow
On Thu, Jun 11, 2009 at 5:19 PM, Jeremy Orlow jor...@chromium.org wrote: On Thu, Jun 11, 2009 at 4:50 PM, Joe Mason joe.ma...@torchmobile.comwrote: Mark Rowe wrote: On 2009-06-11, at 15:16, Ojan Vafai wrote: On Sat, Jun 6, 2009 at 7:14 PM, Ojan Vafai o...@google.com mailto:

Re: [webkit-dev] arm jit

2009-06-11 Thread Gavin Barraclough
And here, I have to make a short comment on the non-acceptance of our ARM JIT implementation. In your mail you mention that you would remain reluctant to accept a duplicate of the JIT into the tree, rather than a port of the existing JIT utilizing the MacroAssembler abstraction. Well, did

[webkit-dev] about webkit's license in chrome

2009-06-11 Thread David Jones
As listed in http://code.google.com/chromium/terms.html#3rdparty , there're three different licenses of webkit in chrome: BSD/LGPL 2/LGPL 2.1 Why? ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] about webkit's license in chrome

2009-06-11 Thread Peter Kasting
2009/6/11 David Jones ds...@163.com As listed in http://code.google.com/chromium/terms.html#3rdparty , there're three different licenses of webkit in chrome: BSD http://www.opensource.org/licenses/bsd-license.php/LGPL 2/LGPL 2.1http://opensource.org/licenses/lgpl-2.1.php Why? For the

Re: [webkit-dev] about webkit's license in chrome

2009-06-11 Thread Mike Hommey
On Thu, Jun 11, 2009 at 10:44:25PM -0700, Peter Kasting wrote: 2009/6/11 David Jones ds...@163.com As listed in http://code.google.com/chromium/terms.html#3rdparty , there're three different licenses of webkit in chrome: BSD http://www.opensource.org/licenses/bsd-license.php/LGPL 2/LGPL

Re: [webkit-dev] ubuntu build problem

2009-06-11 Thread anurag uniyal
do anybody have a clue, or any pointers for me so that I can fix it myself? I have checked out revision 44600 today and it gives me build problem is there some stable version which I should be using? I am building it on ubuntu machine with command ./build-webkit --wx --wx-args=wxgc wxpython