Deprecations and Removals in Chrome 62
In nearly every version of Chrome, we see a significant number of updates and improvements to the product, its performance, and also capabilities of the Web Platform. This article describes the deprecations and removals in Chrome 62, which is in beta as of September 14. This list is subject to change at any time.
Remove RTCPeerConnection.getStreamById()
Nearly two years ago, getStreamById()
was removed from the WebRTC
spec. Most other browsers have
already removed this from their implementations, and the feature was deprecated
in Chrome 60. Though this function is believed to be little-used, it's also
believed there is some minor interoperability risk with Edge and WebKit-based
browsers other than Safari where getStreamById()
is still supported.
Developers needing an alternative implementation can find example code in the
Intent to Remove, below.
Intent to Remove | Chromestatus Tracker | Chromium Bug
Remove SharedWorker.workerStart
This property, which was intended for use in monitoring worker performance was
removed from the spec more than two years ago and it is not supported in the
other major browsers. A more modern approach to tracking performance of a worker
would use
Performance.timeOrigin
.
Intent to Remove | Chromestatus Tracker | Chromium Bug
Remove SVGPathElement.getPathSegAtLength()
In Chrome 48, SVGPathElement.pathSegList()
and related interfaces were removed
in compliance with the SVG specification. At that
time, this method was mistakenly left in. We don't excpct this removal to break
any web pages since, for the last two years, it has returned an object that no
longer exists in Blink.
Intent to Remove | Chromestatus Tracker | Chromium Bug
<<../../_deprecation-policy.md>>