Chrome version: 133, 132, 131, 130, 129, 128, 127, 126, 125, 124, 123, 122, 121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 107, 106, 105, 104, 103, 102, 101, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0
This release of Chrome had 31 new features.
Web payments is a W3C standard API for e-commerce websites to collect payment information from users with user consent. This feature lets users pay using native Android payment apps. #
This feature was specified in this Spec.
Samples: https://rsolomakhin.github.io/pr/bob/https://rsolomakhin.github.io/pr/alipay/
Adds the @font-face descriptor and a corresponding property for controlling how a downloadable font renders before it is fully loaded. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/docs/Web/CSS/@font-face/font-display
Samples: http://output.jsbin.com/nigahi/latest/quiet
Add support the the CSS font-stretch property. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/CSS/font-stretch
No linked samplesThe :focus-within pseudo-class applies to elements for which the :focus pseudo class applies. An element also matches :focus-within if one of its descendants in the flat tree (including non-element nodes, such as text nodes) matches the conditions for matching :focus. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within
Samples: http://codepen.io/anon/pen/xOLJymhttps://blogs.igalia.com/mrego/files/2017/05/focus-within-demo.htmlhttps://blogs.igalia.com/mrego/files/2017/05/focus-within-menu.html
The type read-only property of the Client interface indicates the type of client the service worker is controlling. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/Client/type
No linked samplesThe new asynchronous clipboard API makes use of DataTransfer objects and has a need to be able to construct new ones. For example (with new clipboard api): var data = new DataTransfer(); data.items.add("\(°o°)/", "text/plain"); navigator.clipboard.write(data).then(function() { console.log(“Copied to clipboard successfully! ᕕ( ᐛ )ᕗ”); }, function() { console.error(“Unable to write to clipboard. (╯ಠ_ಠ)╯︵ ┻━┻”); }); #
This feature was specified in this Spec.
Docs: Spec change: https://github.com/whatwg/html/commit/688a102b52c7050a6808a05c5d8fe149c0937fd7Tests: http://w3c-test.org/html/editing/dnd/datastore/datatransfer-constructor-001.htmlhttps://developer.mozilla.org/en-US/docs/Web/API/DataTransferhttps://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/DataTransfer
Samples: https://w3c.github.io/clipboard-apis/#h-clipboard-write-data
This feature introduces the CredentialsContainer.create method to the Credential Management API. This method allows for asynchronous creation of Credential objects. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainerhttps://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/create
No linked samplesSupport new Document() to create a Document instance. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/Documenthttps://developer.mozilla.org/en-US/docs/Web/API/Document/Document
No linked samplesRemove tiny content exception for "Detect and run important plugin content" setting. This means that cross-origin plugin content that is 5x5 or smaller will not load under the default setting. #
This feature was specified in this Spec.
Docs: https://groups.google.com/a/chromium.org/d/msg/chromium-dev/QL2K4yFVg_U/vj44YWOaAwAJhttps://docs.google.com/document/d/1IqaOmCgQWN1l-dgM9fSDFDQQEy_fQjs7SiqDsYjrefE/edit
No linked samplesThis change drops the SiteBoundCredential interface in favor of a CredentialUserData mixin. This change was introduced in the Credential Manager API specification with commit a43865bd8aa9842dbc8d8e688d5668c087677eac (https://github.com/w3c/webappsec-credential-management/commit/a43865bd8aa9842dbc8d8e688d5668c087677eac). #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/Credential_Management_API
No linked samplesThis change exposes passwords to JavaScript in the Credential Management API by providing the corresponding attribute on PasswordCredential. Furthermore it deprecates the previously existing PasswordCredential attributes and the custom `fetch()` `credential` infrastructure. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/updates/2017/06/credential-management-updateshttps://developer.mozilla.org/en-US/docs/Web/API/PasswordCredentialhttps://developer.mozilla.org/en-US/docs/Web/API/PasswordCredential/password
No linked samplesAllow site authors to selectively enable and disable use of various browser features and APIs. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/updates/2018/06/feature-policyhttps://docs.google.com/document/d/1k0Ua-ZWlM_PsFCFdLMa8kaVTo32PeNZ4G7FFHqpFx4E/edit?usp=sharinghttps://chrome.google.com/webstore/detail/feature-policy-tester-dev/pchamnkhkeokbpahnocjaeednpbpacop
Samples: https://feature-policy-demos.appspot.com/
Allows multipart/form-data and application/x-www-form-urlencoded fetch requests and responses to be consumed and parsed into FormData objects. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/Bodyhttps://developer.mozilla.org/en-US/docs/Web/API/Body/formData
No linked samplesAPI to enable developers to measure time for First Paint (FP) & First Contentful Paint (FCP) -- the first key moments in loading that they care about. These moments are added as 'paint' entries in the Performance Timing API. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/PerformancePaintTiminghttps://developers.google.com/web/updates/2017/07/nic60#paint
No linked samplesInputEvent allows user input to be managed by script and help interactive with IME. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/InputEvent
No linked samplesVP9 is an open and royalty-free video codec that has been supported in Chromium since 2013. This update adds a new string format for describing the encoding properties, such as the profile, level, etc. Such properties are common in video codecs but are not exposed in the current VP9 string format. In addition, this update includes using the new format to advertise support for VP9 Profile 2. The string format is accepted by media-related APIs #
This feature was specified in this Spec.
Docs: https://www.webmproject.org/vp9/mp4/
Samples: https://googlechrome.github.io/samples/media/vp9-codec-string.html
This introduces rest properties for object destructuring assignment and spread properties for object literals. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/updates/2017/06/object-rest-spreadhttps://developer.mozilla.org/docs/Web/JavaScript/Reference/Operators/Object_initializer#Spread_propertieshttps://developer.mozilla.org/docs/Web/JavaScript/Reference/Operators/Spread_syntax#Spread_in_object_literalshttps://docs.google.com/document/d/1ZlhIAoZkaSddN6dXbebzNjXUA-oIEwzOd3dgoVejnK8/
Samples: http://www.2ality.com/2016/10/rest-spread-properties.html
Add a free-form identifier for payment request. This will be set using PaymentDetailsInit and reflected through PaymentRequest and PaymentResponse and to payment apps. If no identifier is specified a unique identifier will be created. #
This feature was specified in this Spec.
Docs: https://github.com/w3c/browser-payment-api/issues/388https://github.com/w3c/browser-payment-api/pull/426https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequest/PaymentRequesthttps://developer.mozilla.org/en-US/docs/Web/API/PaymentRequesthttps://developer.mozilla.org/en-US/docs/Web/API/PaymentResponse
No linked samplesReplace the PaymentRequest.complete enum value "" with the more descriptive "unknown". #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/PaymentResponse/complete
No linked samplesChrome currently supports encrypted push message payloads encrypted with the `aesgcm` content encoding (draft 03). A series of substantial changes were made to the encryption drafts, yielding a new content coding: `aes128gcm` (draft 08). We'll continue to accept `aesgcm` for received push messages as well. #
This feature was specified in this Spec.
Docs: https://tools.ietf.org/html/draft-ietf-webpush-encryption-03https://tools.ietf.org/html/draft-ietf-webpush-encryption-08
No linked samplesStatic property containing the supported content encodings developers can use for encrypting push messages. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/PushManagerhttps://developer.mozilla.org/en-US/docs/Web/API/PushManager/supportedContentEncodings
No linked samplesProperty indicating the time at which, if any, the subscription won't be valid anymore. The user agent will attempt to fire a `pushsubscriptionchange` event with a new subscription before this happens. Chrome will always return NULL, until we support subscription refreshes. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/PushSubscriptionhttps://developer.mozilla.org/en-US/docs/Web/API/PushSubscription/expirationTime
No linked samplesCalls to navigator.vibrate will immediately return 'false' if user hasn't tapped on the frame or any embedded frame yet. The Vibrate API is being abused by malicious sites. This extends what we do for cross-origin iframes to all frames including top-level page. See https://www.chromestatus.com/features/5682658461876224. #
This feature was specified in this Spec.
Docs: https://github.com/WICG/interventions/issues/47https://developer.mozilla.org/en-US/docs/Web/API/Navigator/vibrate
No linked samplesThis change renames CredentialsContainer.requireUserMediation to CredentialsContainer.preventSilentAccess in the Credential Management API. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/updates/2017/06/credential-management-updateshttps://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainerhttps://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/preventSilentAccess
No linked samplesThis feature introduces an CredentialMediationRequirement enum argument to the CredentialRequestOptions of CredentialsContainer.get() that is intended to replace the currently existing boolean flag CredentialRequestOptions.unmediated. The enum will have three states ("silent", "optional", "required") with "silent" and "optional" directly mapping to the existing boolean states, "required" is a novel option. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/updates/2017/06/credential-management-updateshttps://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainerhttps://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/get
No linked samplesVP9 is an open and royalty free video coding format. ISO-BMFF (MP4) is an industry standard container and is broadly accepted and used in the industry. Chrome already supports the VP9 codec (currently only in WebM container) and the ISO-BMFF container. This enables them to be used together. #
This feature was specified in this Spec.
Docs: http://www.webmproject.org/vp9/mp4/
Samples: https://cs.chromium.org/chromium/src/media/test/data/bear-320x240-v_frag-vp9.mp4
If the requestPayerName flag was set to true in the PaymentOptions passed to the PaymentRequest constructor, then UA should collect and return the payer's name as part of the payment request. For example, this would be set to true to allow merchant to make a booking in the payer's name. This option has been behind a flag on mobile since Chrome 55. On desktop, it's shipping in Chrome 60 with the rest of Payment Request API. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/PaymentRequest/PaymentRequest
No linked samplesFor every payment method, there must be a corresponding JSON manifest file describing how that method participates in the web payments ecosystem. #
This feature was specified in this Spec.
Docs: https://developers.google.com/web/fundamentals/payments/payment-apps-developer-guide/android-payment-appshttps://github.com/zkoch/zkoch.github.io/blob/master/pmi-v2.md
No linked samplesCurrently, XFO performs a same origin check only against the top-level frame in a document's ancestor chain. As lcamtuf notes in [1], "Any site that allows a rogue ad to be displayed in an IFRAME; or that frames third-party content for other reasons (e.g., iGoogle, Image Search results, Facebook gadgets), is effectively not protected)." We should check all ancestors instead. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
No linked samplesgetElementsByTagName() used to accept only local names. The DOM specification was updated to accept qualified names. #
This feature was specified in this Spec.
Currently, we only log a message to the console. For consistency with other APIs, the WhatWG spec now requires that window.open throws a DOMException "SyntaxError" instead. #
This feature was specified in this Spec.
This release of Chrome had 1 new origin trials.
This specification describes an API that can be used to retrieve the amount of budget an origin has available for resource consuming background operations, as well as the cost associated with doing such an operation. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/Web_Budget_APIhttps://developer.mozilla.org/en-US/docs/Web/API/BudgetServicehttps://developer.mozilla.org/en-US/docs/Web/API/BudgetState
No linked samplesThis release of Chrome had 3 are available behind a flag.
The CSS line-height-step property provides an ability to round the heights of line boxes to the multiple of the specified length. This property allows authors to control vertical rhythm. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/CSS/line-height-step
Samples: https://drafts.csswg.org/css-rhythm/examples/snap-height.html
createElementNS() should now throw only InvalidCharacterError, not NamespaceError. Validating a qualified name should only throw InvalidCharacterError, not NamespaceError, after: https://github.com/whatwg/dom/issues/319 https://github.com/w3c/web-platform-tests/issues/5161 https://github.com/whatwg/dom/issues/423 Latest spec: https://dom.spec.whatwg.org/#validate #
This feature was specified in this Spec.
Align continuous mouse events (mousemove, mousewheel) so that they occur close to requestAnimationFrame() as possible. Historical events can be accessed via getCoalescedEvents (see https://w3c.github.io/pointerevents/extension.html#extensions-to-the-pointerevent-interface) #
This feature was specified in this Spec.
Docs: https://docs.google.com/document/d/1aM9AqyYuceRHOmsJZXFKcgi_D4jvFAymYvI36OEwIpI/edit#https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFramehttps://developer.mozilla.org/en-US/docs/Web/Events/mousemovehttps://developer.mozilla.org/en-US/docs/Web/Events/wheel
Samples: http://rbyers.github.io/event-timing.html
To keep the platform healthy, we sometimes remove APIs from the Web Platform which have run their course. There can be many reasons why we would remove an API, such as:
Some of these changes will have an effect on a very small number of sites. To mitigate issues ahead of time, we try to give developers advanced notice so they can make the required changes to keep their sites running.
Chrome currently has a process for deprecations and removals of API's, essentially:
You can find a list of all deprecated features on chromestatus.com using the deprecated filter and removed features by applying the removed filter. We will also try to summarize some of the changes, reasoning, and migration paths in these posts.
This release of Chrome had 0 features deprecated.
This release of Chrome had 7 features removed.
Headers.prototype.getAll() is removed from the Fetch API specification. #
This feature was specified in this Spec.
Docs: https://github.com/whatwg/fetch/commit/42464chttps://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/x3YXciXQWM0https://developer.mozilla.org/en-US/docs/Web/API/Headershttps://developer.mozilla.org/en-US/docs/Web/API/Headers/getAll
No linked samplesThe API asynchronously returns a list of existing database names in an origin, which seemed sensible enough. The design is flawed, in that the results may be obsolete as soon as they are returned, so it can really only be used for logging, not serious application logic. Not implemented in other browsers. https://github.com/w3c/IndexedDB/issues/31 tracks/links to previous discussion on flaws and possible alternatives. #
This feature was specified in this Spec.
Docs: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
No linked samplesRemove non-standardize APIs from CSS Rule and Developer can use KEYFRAMES_RULE and KEYFRAME_RULE instead #
This feature was specified in this Spec.
Remove non-standard 'WebKitTransitionEvent' support of document.createEvent(). #
This feature was specified in this Spec.
We intend to block web pages from loading data: URLs in the top frame using <A> tags, window.open, window.location and similar mechanisms. Pseudo URLs such as data: are generally a source of confusion for users. Because of their unfamiliarity, these schemes are widely being used in spoofing and phishing attacks. Users browsing the web ideally should only ever end up on the two well known schemes (http and https). Deprecated in M58 Removal in M60 #
This feature was specified in this Spec.
Docs: https://bugs.chromium.org/p/chromium/issues/detail?id=594215
No linked samplesCorrectly implement window.NodeFilter. It should not have .prototype, and NodeIterator.filter and TreeWalker.filter should not wrap JavaScript objects. #
This feature was specified in this Spec.
Remove non-standard 'WebKitAnimationEvent' support of document.createEvent(). #
This feature was specified in this Spec.