[webkit-dev] RenderObject hasLayer method

2009-06-12 Thread Meryl Silverburgh
Hi, Can someone please tell me what does the 'layer' in a RenderObject means? in other words, what does hasLayer method returns or purpose of that method? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org

[webkit-dev] Serialize DOM to file

2009-06-03 Thread Meryl Silverburgh
Hi, Is there any debug code/example code snippet to serialize the DOM to a fie? Thank you for any tip. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] How to set breakpoints in JavaScript Engine of WebKit on MacOS

2009-05-29 Thread Meryl Silverburgh
On Fri, May 15, 2009 at 11:07 PM, Darin Adler da...@apple.com wrote: On May 15, 2009, at 10:50 PM, Meryl Silverburgh wrote: I am able to download and compile both WebCore project and JavaScriptCore project using XCode on Macos. I have created a custom executable (pointing to /Application

[webkit-dev] Webkit profiling on MacOS

2009-05-22 Thread Meryl Silverburgh
Hi, Does Webkit have profiling build in on MacOS? e.g. For each page, I would like to know how much time is spent on html parsing, css parsing, javascript executing? And does Webkit work with Valgrind on MacOS? Or it uses other time of profiling tool on MacOS? e.g. for each page, find out the

[webkit-dev] How to set breakpoints in JavaScript Engine of WebKit on MacOS

2009-05-15 Thread Meryl Silverburgh
Hi, I am able to download and compile both WebCore project and JavaScriptCore project using XCode on Macos. I have created a custom executable (pointing to /Application/Safari.app) in my WebCore project. The browser is launched and I can set breakpoints in WebCore. But my question is how can I

[webkit-dev] Dump render tree of webkit

2009-05-14 Thread Meryl Silverburgh
Hi, In http://webkit.org/blog/114/webcore-rendering-i-the-basics/, it said webkit will build a Render tree for each page it loads. Is there a tool/API for me to dump the Render Tree to a file/screen? The closest I find is './WebKitBuild/Debug/DumpRenderTree', but when I run it $

[webkit-dev] squirrelfish-bytecode

2009-05-13 Thread Meryl Silverburgh
Hi, Does webkit cache squirrelfish bytecode? For example, multiple can use the same javascript file (e.g. common javascript libraries, like jquery, or same domain uses some common javascript file across different pages for the same domain). When webkit parses the JS file and builds

Re: [webkit-dev] How can I listen for a page load complete event

2009-04-30 Thread Meryl Silverburgh
On Wed, Apr 29, 2009 at 10:30 AM, Darin Adler da...@apple.com wrote: On Apr 29, 2009, at 10:00 AM, Meryl Silverburgh wrote: Can you please tell me how can I listen for a page load complete event programmatically? What platform? What programming language? Could you give a little more context

[webkit-dev] files with .mm extension

2009-04-30 Thread Meryl Silverburgh
Hi, Can you please tell me what are the files with .mm extension? e.g. platform/graphics/mac/ImageMac.mm? It looks like c++, but it has syntax like this: NSBundle *bundle = [NSBundle bundleForClass:[WebCoreBundleFinder class]]; NSString *imagePath = [bundle pathForResource:[NSString

[webkit-dev] How can I listen for a page load complete event

2009-04-29 Thread Meryl Silverburgh
Hi, Can you please tell me how can I listen for a page load complete event programmatically? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] Safari Open in Dashboard feature

2009-04-20 Thread Meryl Silverburgh
, Meryl Silverburgh wrote: Hi, Can you please tell me if Safari Open in Dashboard feature is open source?  And if it is part of the webkit trunk? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman

[webkit-dev] Safari Open in Dashboard feature

2009-04-18 Thread Meryl Silverburgh
Hi, Can you please tell me if Safari Open in Dashboard feature is open source? And if it is part of the webkit trunk? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[webkit-dev] Webkit Design and MVC design pattern

2009-03-16 Thread Meryl Silverburgh
Hi, Does Webkit follow MVC design pattern? If DOM is the Model, and Render Tree is the View, what is the 'controller' in MVC? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[webkit-dev] Does webkit hold previous loaded pages in memory

2009-03-16 Thread Meryl Silverburgh
Hi, Does webkit hold pages in memory to allow faster back? For example, I load 3 different sites one after another: 1. www.google.com 2. www.yahoo.com 3. www.cnn.com Does it hold the DOM/Render Tree/JavaScript code/data (after the source is parsed) of the previous 2 sites? If not, does it hold

[webkit-dev] Need help in understanding Webkit text wrapping

2009-03-09 Thread Meryl Silverburgh
Hi, Can you please tell me where is the Webkit code which does text wrapping? For example, I have a paragraph of text. How does Webkit decide where to break into multiple lines? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Safari-4 is webkit/trunk?

2009-02-24 Thread Meryl Silverburgh
On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler da...@apple.com wrote: On Feb 24, 2009, at 1:47 PM, G G wrote: Is today's release of Safari 4 beta building against trunk or a branch? http://trac.webkit.org/browser/releases/Apple/Safari%204%20Public%20Beta    -- Darin Thanks. Can you please

Re: [webkit-dev] Safari-4 is webkit/trunk?

2009-02-24 Thread Meryl Silverburgh
Sorry, I find out there is a typo in my url. On Tue, Feb 24, 2009 at 4:30 PM, Meryl Silverburgh silverburgh.me...@gmail.com wrote: On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler da...@apple.com wrote: On Feb 24, 2009, at 1:47 PM, G G wrote: Is today's release of Safari 4 beta building against

Re: [webkit-dev] Safari-4 is webkit/trunk?

2009-02-24 Thread Meryl Silverburgh
Sorry for my mistake. I apologize. On Tue, Feb 24, 2009 at 4:34 PM, Mark Rowe mr...@apple.com wrote: On 2009-02-24, at 16:30, Meryl Silverburgh wrote: On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler da...@apple.com wrote: On Feb 24, 2009, at 1:47 PM, G G wrote: Is today's release of Safari 4

[webkit-dev] How to build a webkit release build

2009-02-24 Thread Meryl Silverburgh
I read the instructions here in building Webkit trunk build. http://webkit.org/building/build.html But when I check out the 'release' build, it only has 4 subdirectories (different from the trunk project directories) and it does not have 'WebKit/WebKitTools/Scripts/build-webkit'

Re: [webkit-dev] How to build a webkit release build

2009-02-24 Thread Meryl Silverburgh
eveything, autogen.sh --pefix=dir set-webkit-configuration --release build-webkit --gtk --- On Wed, 2/25/09, Meryl Silverburgh silverburgh.me...@gmail.com wrote: From: Meryl Silverburgh silverburgh.me...@gmail.com Subject: [webkit-dev] How to build a webkit release build To: webkit-dev

[webkit-dev] Need help in understanding how webkit handles clicks event

2009-01-28 Thread Meryl Silverburgh
Hi, Can you please how webkit handles a mouse click from a user? For example, when user clicks an anchor, it will load the web page. But if the links points to a pdf document, it will load the document using pdf reader. Can you please tell me where in the code handles that? Thank you.

[webkit-dev] Build error of Web kit on ubuntu

2008-12-18 Thread Meryl Silverburgh
Hi, i just check out the webkit source and try to compile it under ubuntu. I get this follow error: Can't open WebKit/gtk/webkit/webkitversion.h: No such file or directory at /usr/bin/glib-mkenums line 273. But I was able to compile the webkit code when i check that out (using git) about 2