Re: [webkit-dev] Coding convention of constants

2009-07-09 Thread Scott Thompson
On Jul 8, 2009, at 11:08 PM, KwangYul Seo wrote: I found another style which starts with k. [4] platform/chromium/PopupMenuChromium.cpp static const int kMaxVisibleRows = 20; static const int kMaxHeight = 500; static const int kBorderSize = 1; static const TimeStamp kTypeAheadTimeoutMs =

Re: [webkit-dev] RenderObject hasLayer method

2009-06-12 Thread Scott Thompson
On Jun 12, 2009, at 12:17 AM, Meryl Silverburgh wrote: 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? I'm going to speculate here, but on the MacOS, there is a technology

[webkit-dev] Debugging JavaScript Core Apps that are not Safari

2008-11-21 Thread Scott Thompson
It's been a while since I've looked at JavaScript Core and obviously a lot of changes have gone on. In my previous examination, I was using Drosera to debug an application which used JavaScript Core as an internal scripting engine. It would appear that all the JavaScript debugging facilities

Re: [webkit-dev] Desperate for webkit help

2008-04-11 Thread Scott Thompson
On Apr 11, 2008, at 7:37 PM, David Kilzer wrote: The best thing you could do is to file a bug on https://bugreport.apple.com/ and attach source for a project that reproduces the issue, along with details steps to reproduce the issue. If you don't have an Apple Developer Connection (ADC)

[webkit-dev] JavaScript Core and bytecode

2008-04-08 Thread Scott Thompson
With the recent speed improvements show by JavaScript in the WebKit builds... has JavaScript Core changed to use a byte code interpreter (as suggested at the web site http://webkit.org/projects/javascript/index.html)? Scott ___ webkit-dev

[webkit-dev] [ot?] JavaScript project pages at the WebKit web site

2008-04-02 Thread Scott Thompson
I was curious to know what plans, if any, there were to incorporate JavaScript 2.0 language features into the WebKit's JavaScript Core engine. I visited the web site: http://webkit.org/projects/javascript/index.html and read through the current projects. In seeing the last project

[webkit-dev] The thisObject parameter for JSEvaluateScript

2008-03-24 Thread Scott Thompson
I'm using JavaScript core to integrate JavaScript as an embedded scripting engine in my application. I've gotten a lot of stuff working (which is a lot of fun, BTW). I've been able to run scripts and see them manipulate objects in my application model (windows and the like... just to see