Re: [webkit-dev] WebKit Documentation

2023-03-15 Thread Simon Fraser via webkit-dev
> On Mar 9, 2023, at 10:48 AM, Brandon Stewart via webkit-dev > wrote: > > Hello, > > Sorry for the delay on the documentation update. > > For getting the documentation system online, we were trying to settle on a > subdomain. > > What would people prefer we use as the official

Re: [webkit-dev] Unsigned to avoid negative values

2023-01-26 Thread Simon Fraser via webkit-dev
Late to the party but…. Avoiding unsigned is usually recommended to avoid inadvertent underflow: unsigned big = 200; unsigned small = 100; auto result = small - big; // underflow This is particularly bad when doing math on buffer offsets and sizes, and can result in OOB bugs. I

Re: [webkit-dev] Update commit log template to add placeholder for explanation of why a patch fixes a bug

2022-11-17 Thread Simon Fraser via webkit-dev
> On Nov 17, 2022, at 12:23 PM, David Kilzer via webkit-dev > wrote: > > Hi, > > The following PR adds placeholder text in the commit log template to remind > authors to explain why a change fixes a bug: > > Bug 248012: Update commit message template to request a brief explanation of > why

Re: [webkit-dev] Backlogs on ios-wk2

2022-03-29 Thread Simon Fraser via webkit-dev
https://trac.webkit.org/changeset/292051/webkit should have fixed most of those crashes. Simon > On Mar 29, 2022, at 11:52 AM, Ken Russell via webkit-dev > wrote: > > Hi WebKit developers, > > It looks like there's a ~10 hour backlog on the

Re: [webkit-dev] Proposed changes to Bugzilla 'Resolution' categories

2022-02-10 Thread Simon Fraser via webkit-dev
> On Feb 10, 2022, at 11:55 AM, Brent Fulgham via webkit-dev > wrote: > > Hi Floks, > > I would like to propose some changes to the categories we use to resolve > bugs. I’ve been trying to do some Bugzilla gardening to better reflect the > state of various “edge case” bugs that often leave

Re: [webkit-dev] Fuzzy Reftest Plans, and Metadata Locations

2021-11-01 Thread Simon Fraser via webkit-dev
> On Oct 30, 2021, at 10:45 AM, Ryosuke Niwa via webkit-dev > wrote: > > On Thu, Oct 28, 2021 at 10:24 AM Sam Sneddon via webkit-dev > mailto:webkit-dev@lists.webkit.org>> wrote: > As part of the ongoing work on GPU Process, we’re interested in adding > support for reftest fuzzy matching

Re: [webkit-dev] Request for Position on contained body to viewport propagation

2021-09-14 Thread Simon Fraser via webkit-dev
No objection. Simon > On Sep 14, 2021, at 1:00 PM, Rune Lillesveen via webkit-dev > wrote: > > Hi, > > Blink plans to ship the spec change resolved in [1] to not propagate body > styles to the viewport when the body or root elements are contained. Also, > see the bug report for WebKit[2].

Re: [webkit-dev] Removing the ENABLE(CSS_SCROLL_SNAP) flag

2021-06-15 Thread Simon Fraser via webkit-dev
Sounds fine. Simon > On Jun 15, 2021, at 5:04 AM, Martin Robinson via webkit-dev > wrote: > > Recently, css-scroll-snap was enabled on all ports. The implementation > has also been extended to be mostly platform-independent. Since all > ports are compiling this code and it's a fairly basic

Re: [webkit-dev] Request for Position on Delegated Ink Trails

2021-05-12 Thread Simon Fraser via webkit-dev
I don't think WebKit has a strong opinion on this. From an Apple perspective, we try very hard to make our hardware and software stack be performant enough that special cases like this are not necessary. I can't speak to other WebKit platforms. Simon > On May 11, 2021, at 9:32 AM, Mario

Re: [webkit-dev] Request for position: New Canvas 2D API

2021-05-03 Thread Simon Fraser via webkit-dev
> On May 1, 2021, at 10:07 AM, Aaron Krajeski via webkit-dev > wrote: > > Hi webkit-dev, > > This is a request for WebKit's position on New Canvas 2D API > features. > > Explainer/Chrome Dev Summit Video >

Re: [webkit-dev] Request For Position on CSS containment

2021-03-15 Thread Simon Fraser via webkit-dev
We have no code for css containment yet. Simon > On Mar 15, 2021, at 12:57 PM, Rob Buis wrote: > > Hi, > > If true, then https://bugs.webkit.org/show_bug.cgi?id=172026 can be closed. > > I am finding the feature in features.json, but I am not sure that means there > is actual code. > >

Re: [webkit-dev] Request For Position on CSS containment

2021-03-15 Thread Simon Fraser via webkit-dev
WebKit supports CSS containment. Simon > On Mar 15, 2021, at 9:14 AM, Rob Buis via webkit-dev > wrote: > > Hi webkit-dev, > > This is a request for WebKit's position on CSS containment. > > Our first interest is to implement the contain property as specified here: >

Re: [webkit-dev] Request for position: CSS scrollbar-gutter

2021-02-23 Thread Simon Fraser via webkit-dev
WebKit does not support this feature as specified. Our opinion is that we don't want to encourage web developers to reserve space for scrollbars in a way that prevents non-interactive content from intruding into that space. This undoes a big advantage of overlay scrollbars, in that they leave

Re: [webkit-dev] Request for position: Support full 'filter' syntax (i.e filter functions/shorthands) on SVG elements

2020-12-18 Thread Simon Fraser via webkit-dev
WebKit supports this proposal. Simon > On Dec 18, 2020, at 5:32 AM, Fredrik Söderquist via webkit-dev > wrote: > > Hello webkit-dev, > > I'm seeking WebKit's position on application of filter functions/full > 'filter' property syntax (as already implemented for HTML elements) on SVG >

Re: [webkit-dev] Request for position: overflow: clip and overflip-clip-margin

2020-12-07 Thread Simon Fraser via webkit-dev
We support the addition of these properties. Simon > On Dec 7, 2020, at 2:09 PM, Scott Violet via webkit-dev > wrote: > > Hello Webkit-dev, > > I'm seeking WebKit's position on overflow:clip [1] and overflow-clip-margin > [2]. These are part of CSS Overflow Module Level 3. > > [1] -