[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 http://lists.webkit.org/mailman

[webkit-dev] DOM building in Webkit

2009-06-11 Thread Meryl Silverburgh
Hi, Does Webkit build DOM element for things like 'comment' in the html document? and does it build DOM element for text with only non visible characters (e.g. "\n", " " , "\t")? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://

[webkit-dev] Confusion about Webkit method naming convention

2009-06-10 Thread Meryl Silverburgh
Hi, In Java naming convention, it names method boolean isX() // return certain condition is true or not void doX() // perform some operation but in Webkit, its naming convention is void didX() what does that mean? does that method it is already done with doing X and did() is

[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-28 Thread Meryl Silverburgh
On Fri, May 15, 2009 at 11:07 PM, Darin Adler 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 (poi

[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 brea

[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 se

Re: [webkit-dev] squirrelfish-bytecode

2009-05-14 Thread Meryl Silverburgh
AM, Maciej Stachowiak wrote: >>> >>> >>> On May 13, 2009, at 12:18 AM, Meryl Silverburgh wrote: >>> >>> >>> Hi, >>> >>> Does webkit cache squirrelfish bytecode? For example, multiple can use >>> the same javascript fil

Re: [webkit-dev] Dump render tree of webkit

2009-05-14 Thread Meryl Silverburgh
On Thu, May 14, 2009 at 9:11 AM, Ariya Hidayat wrote: > >> layer at (0,0) size 800x600 >>   RenderView at (0,0) size 800x600 >> layer at (0,0) size 800x600 >>   RenderBlock {HTML} at (0,0) size 800x600 >>     RenderBody {BODY} at (8,8) size 784x584 > > This the render tree. Or did you mean somethi

[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 $ ./WebKitBuild/De

Re: [webkit-dev] squirrelfish-bytecode

2009-05-13 Thread Meryl Silverburgh
On Wed, May 13, 2009 at 1:11 AM, Maciej Stachowiak wrote: > > On May 13, 2009, at 12:18 AM, Meryl Silverburgh wrote: > >> Hi, >> >> Does webkit cache squirrelfish bytecode? For example, multiple can use >> the same javascript file (e.g. common javascript librarie

[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 squirrelfish-b

[webkit-dev] How to run DumpRenderTree on MacOS in Xcode

2009-05-12 Thread Meryl Silverburgh
Hi, I find this article about running DumpRenderTree on Windows in Visual Studio: http://trac.webkit.org/wiki/Debugging%20DumpRenderTree%20on%20Windows Can you please tell me how to run that on MacOS in XCode? Thank you. ___ webkit-dev mailing list we

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

2009-05-04 Thread Meryl Silverburgh
On Thu, Apr 30, 2009 at 11:08 AM, Darin Adler wrote: > On Apr 30, 2009, at 10:55 AM, Meryl Silverburgh wrote: > >> I am trying to do that in C++ on MacOS. >> And when page load complete, I meant the browser finish loading >> everything (all js, images, css). > > I

[webkit-dev] How can I force Webkit to paint all content once

2009-05-01 Thread Meryl Silverburgh
Hi, Is there an API to force Webkit to paint all content once (include the part which is not visible in the Browser Window)? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[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 string

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 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

[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
27;Safari.app', if Safari application is not part of Webkit being open source. How can I debug the WebKit that I get from svn trunk? On Sat, Apr 18, 2009 at 12:41 AM, Adele Peterson wrote: > That feature is part of the Safari application, and is not included in > WebKit. > > - Ade

[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] How does webkit handle mime-type

2009-03-27 Thread Meryl Silverburgh
Hi, Can you please tell me where in the webkit code which look at the mime-type of http response and decides how to process it? 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 t

[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] WebKit JavaScript Engine documents

2009-03-15 Thread Meryl Silverburgh
Hi, Is there any documents for a high-level WebKit JavaScript Engine design or description of main classes? kind of like this: http://webkit.org/blog/115/webcore-rendering-ii-blocks-and-inlines/ for the webkit rendering. Thank you. ___ webkit-dev mailin

[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 http://l

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

2009-02-24 Thread Meryl Silverburgh
te: > check out eveything, > autogen.sh --pefix= > set-webkit-configuration --release > build-webkit --gtk > > > --- On Wed, 2/25/09, Meryl Silverburgh wrote: > >> From: Meryl Silverburgh >> Subject: [webkit-dev] How to build a webkit release build >> To: webk

[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' http://trac.webk

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 wrote: > > On 2009-02-24, at 16:30, Meryl Silverburgh wrote: > >> On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler wrote: >>> >>> On Feb 24, 2009, at 1:47 PM, G G wrote: >>>

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 wrote: > On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler 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
On Tue, Feb 24, 2009 at 1:58 PM, Darin Adler 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 tell me ho

[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. _

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

2008-12-19 Thread Meryl Silverburgh
I reget the source code. It looks like the problem goes away. On Thu, Dec 18, 2008 at 11:47 PM, Meryl Silverburgh wrote: > And I do have 'glib-mkenums ' in usr/bin > > Here are the error I get. I am building using this > 'WebKitTools/Scripts/build-webkit --gtk --debug

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

2008-12-18 Thread Meryl Silverburgh
style/RenderStyle.h:925: instantiated from here ../../JavaScriptCore/wtf/OwnPtr.h:50: error: invalid application of 'sizeof' to incomplete type 'WebCore::AnimationList' ../../JavaScriptCore/wtf/OwnPtr.h:50: error: creating array with negative size ('-0x

[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 week