Re: Intent to implement: Cookie SameSite=lax by default and SameSite=none only if secure

2020-04-07 Thread bb0859745
Add me. Hhhh ___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-platform

Add me

2020-04-07 Thread bb0859745
___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-platform

Removing TabGroup (and SystemGroup)

2020-04-07 Thread Andreas Farre
Hi Colleagues! I'm removing TabGroup (and by virtue of it becoming just an indirection I'm also removing SystemGroup), and this affects you if you're doing event dispatching in a handful of ways. TabGroup was the way in wich Quantum DOM would manage how runnables were scheduled, but with

ChromeUtils.addProfilerMarker - new API to add profiler markers from JS code

2020-04-07 Thread Florian Quèze
I recently landed a new scriptable API to add profiler markers: ChromeUtils.addProfilerMarker. This makes it possible for chrome privileged JS code to insert profiler markers that (optionally) have a duration and an associated text. Examples:

Reimplementing MOZ_ALWAYS_TRUE() using MOZ_DIAGNOSTIC_ASSERT() instead of MOZ_ASSERT()

2020-04-07 Thread Chris Peterson
Heads up: In 77 Nightly, I plan to reimplement MOZ_ALWAYS_TRUE() using MOZ_DIAGNOSTIC_ASSERT() instead of MOZ_ASSERT(). This is bug 1620152. MOZ_ALWAYS_TRUE(X) and friends [1] are like MOZ_ASSERT(X), except they also evaluate the expression X in release builds. This is useful for silencing