[webkit-dev] Feature Announcement: dialog element

2012-07-03 Thread Matt Falkenhagen
Hello, I'm interested in implementing the HTML5 dialog element: http://www.whatwg.org/specs/web-apps/current-work/multipage/commands.html#the-dialog-element dialog is meant to be a standard markup for UI elements like dialogs, popups, and tooltips. It also allows for page-level modal dialogs. It

Re: [webkit-dev] SH4, MIPS, and legacy-ARM assemblers in JavaScriptCore

2012-07-03 Thread Zoltan Herczeg
The ARM support for DFG-JIT is finished, and the patch is ready to review at bug 90198. Regards, Zoltan On the topic of JIT support, the baseline JIT's role is increasingly only to serve only to gather profiling data for the DFG JIT, and if you want high performance JavaScript on your

Re: [webkit-dev] is DNS for webkit.org down?

2012-07-03 Thread Robert Hogan
This has started happening again I think. As of 8.30pm GMT Monday evening. On Sunday 01 July 2012 15:34:36 William Siegrist wrote: There was a network issue that has since been resolved. If you're still having trouble, please let me know. -Bill On Jun 30, 2012, at 8:17 PM, Dirk Pranke

Re: [webkit-dev] is DNS for webkit.org down?

2012-07-03 Thread Dumez, Christophe
Yes, I can confirm: http://queues.webkit.org/results/13126546 Kr, On Tue, Jul 3, 2012 at 10:37 PM, Robert Hogan li...@roberthogan.net wrote: This has started happening again I think. As of 8.30pm GMT Monday evening. On Sunday 01 July 2012 15:34:36 William Siegrist wrote: There was a

Re: [webkit-dev] is DNS for webkit.org down?

2012-07-03 Thread Robert Hogan
Looks like the problem (for me at least) is with Google's DNS servers - 8.8.8.8 and 8.8.4.4. OpenDNS and co. work fine. On Tuesday 03 July 2012 20:37:30 Robert Hogan wrote: This has started happening again I think. As of 8.30pm GMT Monday evening. On Sunday 01 July 2012 15:34:36 William

Re: [webkit-dev] Notifications for Blob serialization/deserialization

2012-07-03 Thread Greg Billock
Do you think the way my patch does this, by exposing two new methods on the BlobController for notifying serialization and deserialization, will be sufficient? For IndexedDB, it looks to me that notifications like this (or on the BlobData ID, as you propose) will be critical -- the IndexedDB will

[webkit-dev] lineNumber() and textPosition() methods in HTMLDocumentParser

2012-07-03 Thread KwangYul Seo
Hi. I have a question regarding HTMLDocumentParser. I found that lineNumber() retrives the line number from m_tokenizer while textPosition() retrieves the line number from m_input.current(). I wonder why HTMLDocumentParser keeps two copies of line number. ASSERT(m_tokenizer-lineNumber() == line)