Re: [webkit-dev] Licensing terms for content from developer.apple.com

2019-03-21 Thread Adrian Perez de Castro
Hi again, On Tue, 19 Feb 2019 18:54:43 +0200, Adrian Perez de Castro wrote: > Lately we have been working on enabling the content extensions feature > in the GTK and WPE WebKit ports [1], and we would like to include in the > generated API documentation a reference of the JSON source format wh

Re: [webkit-dev] MathML Refresh Heads up

2019-03-21 Thread Frédéric Wang
On 20/03/2019 20:45, Ryosuke Niwa wrote: > > I agree on the goal but disagree on the suggestion. At minimum, we > should decide each case separately and try to collect some data before. > > We can continue to agree to disagree on this point. But I strongly > object to removing any features

Re: [webkit-dev] MathML Refresh Heads up

2019-03-21 Thread Ryosuke Niwa
On Thu, Mar 21, 2019 at 9:42 AM Frédéric Wang wrote: > On 20/03/2019 20:45, Ryosuke Niwa wrote: > > I agree on the goal but disagree on the suggestion. At minimum, we should > decide each case separately and try to collect some data before. > >> We can continue to agree to disagree on this point.

Re: [webkit-dev] RFC: dropping support for x87

2019-03-21 Thread Xan
Since there were no negative comments in the list, just another extra positive comment in the bug itself, we have landed this: https://trac.webkit.org/changeset/243293/webkit Xan On Mon, Mar 11, 2019 at 7:00 PM Xan wrote: > Hi, > as part of Igalia's work on 32bit support we spent some time tryi

Re: [webkit-dev] Style guideline on initializing non-POD types via member initialization

2019-03-21 Thread Alex Christensen
I object. I don’t find using { *this } in a header disorienting at all. I think it’s better than adding many duplicate lines in each constructor and risking forgetting one. I think if we were to remove all the m_attributeOwnerProxy initializers in WebKit it would add lots of duplication with

Re: [webkit-dev] Style guideline on initializing non-POD types via member initialization

2019-03-21 Thread Alex Christensen
A more specific example of why I object is that I want to do things like add a pointer to the thread an object was created on if ASSERT_DISABLED is false so I can assert if things are done on invalid threads. If I do this in a class like RefCounted, this rule would make me add a guarded initial

Re: [webkit-dev] Style guideline on initializing non-POD types via member initialization

2019-03-21 Thread Filip Pizlo
I don’t like style rules that prevent doing useful things, and this seems like a useful thing. -Filip > On Mar 21, 2019, at 2:12 PM, Alex Christensen wrote: > > A more specific example of why I object is that I want to do things like add > a pointer to the thread an object was created on if