[webkit-dev] Layering violations

2010-10-07 Thread Nikolas Zimmermann
Good morning webkit folks, many of the filter classes in platform/graphics/filters use ImageBuffers getUnmultipliedImageData function, which returns a PassRefPtrImageData. The ImageData class lives in html/. The only way to access the data contained in the ImageData class is to grab a

[webkit-dev] Inspector module

2010-10-07 Thread Tomasz Morawski
Hi, I have a few questions about inspector/JS debugging feature. I am trying to get a JS frame after pausing script execution due to breakpoint reach. If I understand good the „pausedScript” event that is send to my InspectorClient class via the sendMessageToFrontend function should has JS

Re: [webkit-dev] how to create a test that can perform actions while resources are still loading?

2010-10-07 Thread Ojan Vafai
On Wed, Oct 6, 2010 at 4:42 PM, Darin Adler da...@apple.com wrote: On Oct 6, 2010, at 4:36 PM, Jenn Braithwaite (胡慧鋒) wrote: I've also tried making this an http test using a slow loading iframe, but the window onload handler for the page does not run until after its iframe has finished

[webkit-dev] How to save a page

2010-10-07 Thread Jonas Galvez
I realize this is probably not the right list to be making this question, and I apologize in advance for the disruption. I'm just having a really hard time finding resources and documentation on webkit's API. I'm interested in the save webarchive functionality. Is that Safari-specific or is it

Re: [webkit-dev] Pixel test experiment

2010-10-07 Thread Dirk Schulze
I strongly support pixel tests for SVG on the bots! Niko and me are hard working to get SVG pxiel perfect at all time. We run pixel tests on every patch we apply to the SVG code. And it would really help us if the bots blame any change that causes a pixel test to fail, or at least give some

Re: [webkit-dev] setTimeout and Safari

2010-10-07 Thread Steve Conover
So that I don't have to guess whether a page is done rendering. Many developers defer rendering using setTimeout, I'd like to wait until setTimeouts are done and then just after check the result. This would be superior to guessing at a sleep interval in the calling code. On Wed, Oct 6, 2010 at

Re: [webkit-dev] setTimeout and Safari

2010-10-07 Thread Simon Fraser
On Oct 7, 2010, at 12:23 PM, Steve Conover wrote: So that I don't have to guess whether a page is done rendering. Many developers defer rendering using setTimeout, I'd like to wait until setTimeouts are done and then just after check the result. This would be superior to guessing at a sleep

Re: [webkit-dev] setTimeout and Safari

2010-10-07 Thread Steve Conover
It's true. Maybe I'm wrong about this but it seems to me that at some point most pages settle. I'm also planning to put in a hard timeout in what I'm building. And I'm slightly more concerned about js than css. Do you know of a good way at getting at an event queue or something else containing

Re: [webkit-dev] Pixel test experiment

2010-10-07 Thread Jeremy Orlow
This does seem like a great idea. The more pixel tests we can run on the bots, the better! J On Thu, Oct 7, 2010 at 11:06 AM, Dirk Schulze k...@webkit.org wrote: I strongly support pixel tests for SVG on the bots! Niko and me are hard working to get SVG pxiel perfect at all time. We run

Re: [webkit-dev] Pixel test experiment

2010-10-07 Thread Maciej Stachowiak
On Oct 7, 2010, at 6:34 AM, Nikolas Zimmermann wrote: Good evening webkit folks, I've finished landing svg/ pixel test baselines, which pass with --tolerance 0 on my 10.5 10.6 machines. As the pixel testing is very important for the SVG tests, I'd like to run them on the bots,

[webkit-dev] Add SelectionChange event for content editable regions

2010-10-07 Thread Ryosuke Niwa
Greetings all, I propose to implement selectionchange event, an event dispatched whenever selection changes. This event allows developers to be notified of selection change, and can be used to update status for RTE (e.g. toggling the appearance of bold button based on the context around caret).

Re: [webkit-dev] how to create a test that can perform actions while resources are still loading?

2010-10-07 Thread 胡慧鋒
I need the inline script to be in the iframe content so that the test does not execute until the iframe has started loading (but has not completed). I tried the php below, but the script doesn't execute until after the sleep. I don't know php. Is my php wrong? Or does DRT buffer the response

[webkit-dev] webstorage data model

2010-10-07 Thread Subhadip Ghosh
Hi all, I am interested in exploring the low level data storage model used in html5. My primary aim is to study the physical organization of the records with custom attributes, the key-value relationship, and how the queries interact with such a data model. And if possible develop some caching

Re: [webkit-dev] Layering violations

2010-10-07 Thread Darin Adler
On Oct 7, 2010, at 12:50 AM, Nikolas Zimmermann wrote: I'm looking for the right way to fix this long standing layering violation. Feedback appreciated! These classes, ImageData and CanvasPixelArray, are all about interface to JavaScript. They should stay in the higher HTML level. It seems

[webkit-dev] CE-HTML supports

2010-10-07 Thread 黃思賢
I'm plan to add CE-HTML(from CEA-2014-A) supports to webkit, is anyone know how to do it?I found that some company had do this and their source codes also modified from webkit. Should they need to open their source codes? ___ webkit-dev mailing list

Re: [webkit-dev] CE-HTML supports

2010-10-07 Thread Adam Barth
Is there an open standard for CE-HTML? I found the following via a quick web search: http://www.ce.org/Standards/browseByCommittee_2757.asp That page lists the price of the standard as $330.00 (Standard) $247.50 (Member). Perhaps that's the wrong document? Adam On Thu, Oct 7, 2010 at 7:19

Re: [webkit-dev] how to create a test that can perform actions while resources are still loading?

2010-10-07 Thread Alexey Proskuryakov
07.10.2010, в 17:12, Jenn Braithwaite (胡慧鋒) написал(а): Or does DRT buffer the response until the entire response is complete? Buffering is a function of an underlying network library. CFNetwork buffers about 1K of data for content sniffing - it wants to provide a correct content type right

Re: [webkit-dev] how to create a test that can perform actions while resources are still loading?

2010-10-07 Thread Dmitry Titov
It will work, but you need to add more to it, like this: ?php header(Expires: Thu, 01 Dec 2003 16:00:00 GMT); header(Cache-Control: no-cache, no-store, must-revalidate); header(Pragma: no-cache); header(Content-Type: text/html; charset=utf-8); echo(scriptparent.reportLoading('start')/script);