Re: [webkit-dev] FontPlatformData, FontCache and HashMap

2010-02-20 Thread n179911
I have a related question about SimpleFontData and FontPlatformData. When does Webkit create a FontPlatformData and SimpleFontData? I too put debug printfs in these classes constructors. And I see Webkit creates different FontPlatformData and SimpleFontData for same font family and same font

[webkit-dev] RenderContainer class in webkit source code

2009-07-03 Thread n179911
Hi, Can you please tell me if the RenderContainer class in webkit source code got removed? I notice this class in android's webkit source, but when I check the code in webkit trunk, that class is not there. Can you please if that class got removed? Thank you

Re: [webkit-dev] RenderContainer class in webkit source code

2009-07-03 Thread n179911
Thanks. I am not sure how to use ChangeLogs. On Fri, Jul 3, 2009 at 5:58 PM, Simon Frasersimon.fra...@apple.com wrote: On Jul 3, 2009, at 5:41 PM, n179911 wrote: Hi, Can you please tell me if the RenderContainer class in webkit source code got removed? I notice this class in android's

[webkit-dev] WebKit graphics library abstract layer

2009-06-29 Thread n179911
Webkit supports on multiple platform (e.g. Windows, MacOS, linux). And when Webkit paints content on screen, it needs to call native graphics api to paint (e.g. draw text, draw image, draw line, draw rect). Does Webkit code has an abstract layer, which hides the platform dependent graphics API.

[webkit-dev] Dimension of Render Containers

2009-06-25 Thread n179911
Hi, Does the dimension (width X height) of Render Containers (e.g. RenderBlock, RenderTableRow, RenderTableCell) always encompass all its children? For example, The Render Block is 145 x 14 which encompasses its children RenderInline (145x12), RenderText (145x12) RenderBlock (floating) {DIV}

Re: [webkit-dev] Dimension of Render Containers

2009-06-25 Thread n179911
On Thu, Jun 25, 2009 at 9:50 AM, n179911n179...@gmail.com wrote: Hi, Does the dimension (width X height) of Render Containers (e.g. RenderBlock, RenderTableRow, RenderTableCell) always encompass all its children? For example, The Render Block is 145 x 14 which encompasses its children

[webkit-dev] Tab key Navigation

2009-06-17 Thread n179911
Hi, Is 'Tab key Navigation a browser functionality or Webkit functionally? For example, I load google.com, I put my mouse on the search input box click once. The search input box should have focus. And then i press 'Tab', the focus should moved. But what I find out is the way Safari moves focus