Re: [webkit-dev] Removal of trailing whitespace

2023-04-13 Thread Anthony Ricaud via webkit-dev
(not a stakeholder either) On top of ignoring whitespace, Git and Github support ignoring commits when performing `git blame`. With that tool, one commit could remove trailing whitespace over the all project and add some editorconfig or CI checks to prevent them from coming back. Then, a secon

Re: [webkit-dev] Proposal: Adopt Web Inspector coding style for all WebKit JS/CSS source code

2016-07-10 Thread Anthony Ricaud
It would be nice for contributors if those rules were enforced by a linter, like ESLint. > On 10 Jul 2016, at 00:22, Sam Weinig wrote: > > šŸ‘šŸ‘ > > It should probably get a parallel page to > https://webkit.org/code-style-guidelines/ and be updated with the same type > of right / wrong example

Re: [webkit-dev] Mozilla -moz-any() selectors extension

2010-04-30 Thread Anthony Ricaud
I think it's a good addition. Another nice grouping feature would be something like a @subtree() or @scope() rule. @subtree(#menu ul) { li {} li:hover {} a {} } would expand as #menu ul li {} #menu ul li:hover {} #menu ul a {} It's a common feature from CSS "compilers

Re: [webkit-dev] Making browsers faster: Resource Packages

2009-11-17 Thread Anthony RICAUD
I don't see much value in this proposition. For CSS and JS, people will need to run a script to generate the ZIP file. That's what they already do when combining files. And they get more value by combining since they get performance improvements for all browsers, not just the one supporting resour

Re: [webkit-dev] User Stylesheets changes I'd like to make

2009-09-04 Thread Anthony Ricaud
Is it possible to support liveness when Developer Tools are enabled ? Le 4 sept. 2009 Ć  22:02, David Hyatt a Ć©crit : A second change I would like to make is to eliminate the "liveness" of the sheet.. With support coming online for both injected user scripts and user stylesheets, I expect th

Re: [webkit-dev] Implementation thoughts on HTML5 elements

2009-08-26 Thread Anthony Ricaud
Le 27 aoƻt 09 Ơ 01:02, Peter Kasting a Ʃcrit : I am saying that there is nothing _wrong_ with the current WebKit implementations of email, url, tel, search So what about number implementation ? ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Implementation thoughts on HTML5 elements

2009-08-26 Thread Anthony Ricaud
Le 27 aoƻt 09 Ơ 00:03, Peter Kasting a Ʃcrit : On Wed, Aug 26, 2009 at 2:59 PM, Anthony Ricaud wrote: Sorry, I wasn't clear enough in my explanation. I was talking about functionality such as Adress Book or History connection (for email, tel or url) or + and - buttons for numbers

Re: [webkit-dev] Implementation thoughts on HTML5 elements

2009-08-26 Thread Anthony Ricaud
Le 26 aoƻt 09 Ơ 12:29, Michelangelo De Simone a Ʃcrit : 2009/8/26 Anthony Ricaud : I'm concerned about the actual implementation of email, url, tel and number. In shipping versions of Safari (and maybe other browsers ?), those are exposed but without new functionality. We're

Re: [webkit-dev] Implementation thoughts on HTML5 elements

2009-08-26 Thread Anthony Ricaud
I'm concerned about the actual implementation of email, url, tel and number. In shipping versions of Safari (and maybe other browsers ?), those are exposed but without new functionality. Before that, a simple test on input.type != number was sufficient to provide an alternative via Javascri

Re: [webkit-dev] Canvas API in Webkit

2008-12-15 Thread Anthony Ricaud
You might be interested in Ariya's experiments with tab preview: http://ariya.blogspot.com/2008/07/be-my-mirror-my-sword-and-shield.html http://ariya.blogspot.com/2008/08/seas-would-rise-when-i-gave-words.html Anthony. Le 14 dƩc. 08 Ơ 23:24, Lucius Fox a Ʃcrit : Hi, Mozilla has a Canvas API

Re: [webkit-dev] Profiling in WebKit

2008-11-28 Thread Anthony Ricaud
You can use console.profile() and console.profileEnd() from your JavaScript Code. You can specify a title to the profile if you want to run multiple profiles. See http://getfirebug.com/console.html and http://webkit.org/blog/197/web-inspector-redesign/ for more details. Please, file a bug f

Re: [webkit-dev] Database Storage

2008-10-03 Thread Anthony Ricaud
Hi, The database storage (like cookies, localStorage and sessionStorage) is stored locally. So everyone can modify it, you can't rely on it. It's really easy to do so with the Database panel in the Web Inspector. Anthony. Le 3 oct. 08 Ć  02:45, Loll a Ć©crit : > Hi, > > Im not sure if this is