Re: [webkit-dev] Improve selection with floats

2017-09-13 Thread Javier Fernandez
I'd really appreciate any feedback on this thread from layout experts. I have a few ideas and some time to work on them, but I'd need to know if WebKit is interested on exploring them. I know it's a complex logic and the lack of specification does not help at all. Thanks. On 07/09/17 16:40, Javi

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread JF Bastien
> On Sep 13, 2017, at 11:07, Maciej Stachowiak wrote: > > > >> On Sep 13, 2017, at 8:11 AM, JF Bastien > > wrote: >> >> Hello WebCritters, >> >> I’m moving some code around, and one particular header I have is included >> everywhere in JSC so I’d like it to be l

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread Maciej Stachowiak
> On Sep 13, 2017, at 8:11 AM, JF Bastien wrote: > > Hello WebCritters, > > I’m moving some code around, and one particular header I have is included > everywhere in JSC so I’d like it to be lightweight and include as few other > headers as possible. It unfortunately uses WTF::Vector, but it

[webkit-dev] 2017 WebKit Contributors Meeting – Call for Speakers

2017-09-13 Thread Jonathan Davis
Hi folks, We’re just a month away from the annual fall WebKit Contributors Meeting! This is a reminder to please register for the WebKit Contributor’s Meeting at https://webkit.org/meeting to reserve your spot. The registration deadline is Friday, September 29th, 2017, but please don’t wait unt

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread Myles C. Maxfield
> On Sep 13, 2017, at 8:11 AM, JF Bastien wrote: > > Hello WebCritters, > > I’m moving some code around, and one particular header I have is included > everywhere in JSC so I’d like it to be lightweight and include as few other > headers as possible. It unfortunately uses WTF::Vector, but it

[webkit-dev] Forward.h's Vector

2017-09-13 Thread JF Bastien
Hello WebCritters, I’m moving some code around, and one particular header I have is included everywhere in JSC so I’d like it to be lightweight and include as few other headers as possible. It unfortunately uses WTF::Vector, but it only does so as a pointer: void ohNoes(Vector*); It seems lik