Re: [webkit-dev] Iterating SunSpider

2009-07-08 Thread Maciej Stachowiak
On Jul 7, 2009, at 8:50 PM, Geoffrey Garen wrote: I also don't buy your conclusion -- that if regular expressions account for 1% of JavaScript time on the Internet overall, they need not be optimized. I never said that. You said the regular expression test was most likely... the least

[webkit-dev] Error during Cross compiling icu library

2009-07-08 Thread deuxliquid
Hi all, I am cross compiling webkit gtk for MIPS but it is lack of icu. I built icu but get an error as below: icudefs.mk:257: /tango/usr/local/config/icucross.mk: No such file or directory It seems icucross.mk must be installed first into config folder but I don't understand why and how. Can

[webkit-dev] how to port webkit on mobile

2009-07-08 Thread naveen pal
hi all, I am new in webkitgtk development. I have created webkitgtk browser and successfully tested on arm processor. now i want to port this on actual hardware . Please give me suggestion for this. Thanks in advance. Regards, Naveen -- View this message in context:

Re: [webkit-dev] how to port webkit on mobile

2009-07-08 Thread Nilesh Patil
Hi Not sure what harware you are talking about ? Is it some board you are talking about like OMAP3430 or so? If yes then probably you have done all things that are needed. if not then , I consider this as linux Kernel as you are talking about Gtk port. I think you will need to have a proper boot

[webkit-dev] rendering bitmaps

2009-07-08 Thread Jack Wootton
Hello, Is there an API for rendering bitmaps using Webkit, so for example, if I wanted to render a bitmap image not currently defined in the HTML document's markup, can I do this? -- Regards Jack ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Error during Cross compiling icu library

2009-07-08 Thread Hieu Le Trung
Hi, You can follow the guide at http://source.icu-project.org/repos/icu/icu/trunk/readme.html#HowToCrossCompileICU Regards, -Hieu From: webkit-dev-boun...@lists.webkit.org [mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of deuxliquid Sent: Wednesday, July 08, 2009 3:23 PM To:

[webkit-dev] extremely small in GTKLauncher

2009-07-08 Thread haithem rahmani
Hi all, I ran the GTKLauncher built with the webkit-rev44555, and I noticed that the html pages are displayed with an extremly small font size (even unreadable). Does any one met such a problem? regards. haithem. ___ webkit-dev mailing list

[webkit-dev] extremely small fonts in GTKLauncher

2009-07-08 Thread haithem rahmani
Hi all, I ran the GTKLauncher built with the webkit-rev44555, and I noticed that the html pages are displayed with an extremly small font size (even unreadable). Does any one met such a problem? regards. haithem. ___ webkit-dev mailing list

Re: [webkit-dev] re ndering bitmaps

2009-07-08 Thread Christophe Gillette
Hi Jack, Example: PassRefPtrSharedBuffer fileContent = SharedBuffer::createWithContentsOfFile(szFileName); if (!fileContent) { fprintf(stderr, Could not load: %s\n, szFileName); } else { RefPtrBitmapImage image = BitmapImage::create();

[webkit-dev] any progress on GObject/C DOM binding? (#16401)

2009-07-08 Thread Gour
Hi! Few days ago I found out about Pyjamas(-Desktop) project and became ecstatic upon the prospect of being able to use the same Python code to run both desktop and web app in a browser. However, soon I've came to know there are some showstopper preventing users fully utilize this project or

Re: [webkit-dev] WebCore architecture for persistent cache

2009-07-08 Thread KwangYul Seo
Hi, It depends on each HTTP backend. Currently, libcurl does not provide HTTP cache, so you should implement HTTP cache by yourself. Or you can use other HTTP backend which provides persistent HTTP cache. Regards, Kwang Yul Seo 2009/6/17 Jeremy Serdin jser...@gmail.com: Hi all I'm trying to

[webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread RDC
Hi all, Firstly, apologies if this should be directed at webkit-help, rather than webkit-dev, but it seems pertinent to the internals of WebKit. I'm interested in detecting that a page has finished painting via JavaScript; something like Mozilla have implemented in Firefox via the

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread Darin Adler
On Jul 8, 2009, at 10:18 AM, RDC wrote: Is this something that is achievable in the current code? Or is a comparable feature planned? It's not, and I don’t know of any plans to add this. Would you be willing elaborate on why you want this? -- Darin

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread RDC
Would you be willing elaborate on why you want this? Of course; I would like it for benchmarking page rendering times--something I believe would be possible with Web Inspector, but I'm after a cross-browser way of achieving it. At the moment I have a benchmark that uses the onLoad event to

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread Darin Adler
On Jul 8, 2009, at 10:45 AM, RDC wrote: I would like it for benchmarking page rendering times OK. Hyatt may have some thoughts on this. -- Darin ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread David Hyatt
On Jul 8, 2009, at 12:45 PM, RDC wrote: Would you be willing elaborate on why you want this? Of course; I would like it for benchmarking page rendering times-- something I believe would be possible with Web Inspector, but I'm after a cross-browser way of achieving it. At the moment I

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread Darin Fisher
While this is not a perfect solution, a common technique is to call (from onload) a DOM method like offsetHeight that forces layout to run. That way the bulk of the work required to paint is forced to happen before the benchmark considers the page load complete. -Darin On Wed, Jul 8, 2009 at

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread David Hyatt
This still omits the cost of painting from a benchmark though. dave On Jul 8, 2009, at 12:57 PM, Darin Fisher wrote: While this is not a perfect solution, a common technique is to call (from onload) a DOM method like offsetHeight that forces layout to run. That way the bulk of the work

Re: [webkit-dev] any progress on GObject/C DOM binding? (#16401)

2009-07-08 Thread Jeremy Orlow
WebKit has a high bar for code reviews. It's rarely possible to do a high quality code review on huge patches. This is one of the reasons developing in the open (not writing all the code and then trying to get it committed) is advantageous. I don't really see why such bindings (as cool as they

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-08 Thread Maciej Stachowiak
On Jul 8, 2009, at 10:45 AM, RDC wrote: Would you be willing elaborate on why you want this? Of course; I would like it for benchmarking page rendering times-- something I believe would be possible with Web Inspector, but I'm after a cross-browser way of achieving it. At the moment I

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-08 Thread Maciej Stachowiak
I didn't solve every possible problem with prepare-ChangeLog, but I tried to make it a bit less shouty. If you don't provide the --bug argument, it includes text like this: - 2009-07-08 Maciej Stachowiak m...@apple.com Reviewed by NOBODY (OOPS!). Need a short

Re: [webkit-dev] Text control rules in themeWin.css

2009-07-08 Thread Ojan Vafai
On Jul 6, 2009, at 11:47 AM, Dan Bernstein wrote: I was looking at themeWin.css and noticed a few rules relating to text controls. Can anyone shed a light on their purpose and why they are in themeWin.css rather than in html4.css or in a port-specific theme? HISTORY This got checked in

[webkit-dev] Coding convention of constants

2009-07-08 Thread KwangYul Seo
Hi, It seems that there are three coding styles regarding static const int constants. [1] rendering/RenderImage.cpp static const int maxAltTextWidth = 1024; static const int maxAltTextHeight = 256; [2] rendering/RenderVideo.cpp (prefixed with c) static const int cDefaultWidth = 300; static

Re: [webkit-dev] Coding convention of constants

2009-07-08 Thread KwangYul Seo
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 = 1000; 2009/7/9 KwangYul Seo kwangyul@gmail.com

Re: [webkit-dev] Some new mailing lists

2009-07-08 Thread Adam Roben
On Jul 6, 2009, at 11:05 AM, Adam Roben wrote: I went ahead and submitted subscription requests to Gmane for webkit- help, webkit-jobs, and webkit-gtk, since these lists don't have any history to import. These subscription requests have been processed. These lists should show up on Gmane