[webkit-dev] WebKit image rendering performance

2012-09-11 Thread Klemen Slavič
Hello, First time poster. While I admit I haven't worked on WebKit code (yet), I'm very familiar with its workings across different implementations (desktop, mobile and otherwise). In my research regarding WebKit rendering performance, I've stumbled upon an interesting artefact while animating

Re: [webkit-dev] Adding reverse flag to Widget::SetFocus?

2012-09-11 Thread Fady Samuel
Hi Youifumi, I'm a little bit confused about what you did. It seems like youalways select the first subelement in your elemnt. void DateTimeEditElement::focusByOwner() { if (DateTimeFieldElement* field = fieldAt(0)) field-focus(); } I don't understand how Shift+Tab works in your code? Thanks,

Re: [webkit-dev] Regd. Remote debugging support in GtkLauncher

2012-09-11 Thread Gustavo Noronha Silva
Hey, I think this question is off-topic for webkit-dev, please use webkit-gtk or webkit-help in the future. On Qui, 2012-09-06 at 10:49 +, debojyoti@wipro.com wrote: Also I couldn't find any option in GtkLauncher where I can provide the websocket server port, like chrome.exe

Re: [webkit-dev] WebKit image rendering performance

2012-09-11 Thread Benjamin Poulain
On Tue, Sep 11, 2012 at 1:45 AM, Klemen Slavič krof.drak...@gmail.comwrote: First time poster. While I admit I haven't worked on WebKit code (yet), I'm very familiar with its workings across different implementations (desktop, mobile and otherwise). In my research regarding WebKit rendering

Re: [webkit-dev] WebKit image rendering performance

2012-09-11 Thread Klemen Slavič
I suggest you to ask questions on webkit-help. The mailing list webkit-dev is about the development of WebKit Sorry about that, I didn't know which list to address this to, and -dev seemed the appropriate place to pose such a question. A quick run in Instruments shows that, on my machine,

Re: [webkit-dev] New Feature: CSS Element

2012-09-11 Thread Anish Bhayani
Hi Benjamin, Although I will not be here, the team is planning on continuing the work on the project. A good person to contact is: Larry Mclister lmcli...@adobe.com -- Anish Bhayani WebKit Engineering Intern Web Platform Authoring From: Benjamin Poulain

[webkit-dev] How to diagnose a failing early-warning failure that passes on my machine?

2012-09-11 Thread John J Barton
On Bug 96040 (https://bugs.webkit.org/show_bug.cgi?id=96040) I posted a patch. The little oval thingys are all green except cr-linux. Clicking the failing oval gives a long file including these lines: Regressions: Unexpected text failures : (1) inspector/extensions/extensions-panel.html = TEXT

Re: [webkit-dev] How to diagnose a failing early-warning failure that passes on my machine?

2012-09-11 Thread Adam Barth
Currently, there's no way to get results from the bots. You might need to land your patch and see what the bots on build.webkit.org tell you. Adam On Tue, Sep 11, 2012 at 2:45 PM, John J Barton johnjbar...@johnjbarton.com wrote: On Bug 96040 (https://bugs.webkit.org/show_bug.cgi?id=96040) I

Re: [webkit-dev] How to diagnose a failing early-warning failure that passes on my machine?

2012-09-11 Thread Eric Seidel
The cr-linux bots used to upload the results to the bug itself. Maybe that changed? On Tue, Sep 11, 2012 at 3:20 PM, Adam Barth aba...@webkit.org wrote: Currently, there's no way to get results from the bots. You might need to land your patch and see what the bots on build.webkit.org tell

Re: [webkit-dev] How to diagnose a failing early-warning failure that passes on my machine?

2012-09-11 Thread Adam Barth
I think we disabled that because we didn't want to spam the bugs.webkit.org database with tons of zip files. Adam On Tue, Sep 11, 2012 at 3:25 PM, Eric Seidel e...@webkit.org wrote: The cr-linux bots used to upload the results to the bug itself. Maybe that changed? On Tue, Sep 11, 2012 at

Re: [webkit-dev] Adding reverse flag to Widget::SetFocus?

2012-09-11 Thread Yoshifumi Inoue
Hi Fady, DateTimeEditElement::focusByOwner() is called on HTMLInputElement::focus() function == JavaScript focus() method. Other than other input types, input type time isn't focusable, but DateTimeFieldElement, field, is focusable. So, Focus controller moves focus around fields. In other