Re: Intent to unship: TLS 1.0 and TLS 1.1

2019-09-12 Thread Henri Sivonen
On Thu, Sep 12, 2019 at 7:03 AM Martin Thomson wrote: > Telemetry shows that TLS 1.0 usage is much higher > than we would ordinarily tolerate for this sort of deprecation Do we know what the situation looks like for connections to RFC 1918 addresses? > Finally, we will disable TLS 1.0 and 1.1 fo

Re: Intent to ship: Event-based form participation

2019-09-12 Thread John Dai
On Fri, Sep 6, 2019 at 7:11 PM Daniel Veditz wrote: > On Fri, Sep 6, 2019 at 3:07 AM John Dai wrote: > >> Is this feature enabled by default in sandboxed iframes? No. >> > > But it's not specifically disabled in sandboxed frames or behind a > non-default preference setting, right? > Right, it's

Intent to ship: CSS properties text-decoration-skip-ink, text-decoration-thickness, and text-underline-offset

2019-09-12 Thread Daniel Holbert
As of today (Sept 12 2019), I've turned on support for the CSS properties text-decoration-skip-ink, text-decoration-thickness, and text-underline-offset, on all platforms. These features have been developed behind the preferences "layout.css.text-underline-offset.enabled", "layout.css.text-decorat

Re: Intent to unship: TLS 1.0 and TLS 1.1

2019-09-12 Thread Martin Thomson
On Thu, Sep 12, 2019 at 5:50 PM Henri Sivonen wrote: > Do we know what the situation looks like for connections to RFC 1918 > addresses? > That's a hard one to even speculate about, and that's all we really have there. Our telemetry doesn't really allow us to gain insight into that. The big que

New Web IDL constructor syntax

2019-09-12 Thread Boris Zbarsky
As of today, the syntax for Web IDL constructors no longer involves an extended attribute on the interface. There's now something that looks more like a method named "constructor" with no explicitly-defined return type. So this: [Constructor(DOMString str)] interface MyInterface {}; is

ChromeConstructor has been removed

2019-09-12 Thread Boris Zbarsky
With the new constructor syntax described in , we no longer have a [ChromeConstructor] extended attribute. If you want to make an interface only constructible from system code, you can do: interface ChromeOnlyCon