- CSS find-in-page highlight pseudos to expose find-in-page search result styling as a highlight pseudo-element for changing foreground and background colors or adding text decorations
- CSS caret-shape property with recognized values auto, bar, block, and underscore to choose the caret shape inside editable elements
- @scroll-state scrolled support to style descendants of containers based on the most recent scrolling direction
- Side-relative syntax for background-position-x/y longhands to define background image position relative to one of its edges
- View transitions waitUntil() method on the ViewTransition object to delay destruction of the pseudo-tree until a promise settles
- XRVisibilityMaskChange event that provides vertices and indices to represent the mesh of the visible portion of the user's viewport
- Unique identifiers on XRView objects to allow easier pairing with associated visibility masks
- Container-name matching for @container queries to ignore tree-scope so names match regardless of @container rule or container-type declaration origins
- CSS anchor positioning to resolve anchor() and anchor-size() functions against the bounding box of transformed anchors
- SVG2 CSS cascading to match selectors against the <use> instantiation elements instead of the originating element subtree
- overscroll-behavior property to apply to all scroll container elements regardless of whether they currently have overflowing content
- Keyboard scrolling to respect overscroll-behavior property to prevent scroll chaining
Stable release date: January 13th, 2026 Unless otherwise noted, the following changes apply to Chrome 144 stable channel release for Android, ChromeOS, Linux, macOS, and Windows.
CSS and UI
CSS find-in-page highlight pseudos
This feature exposes find-in-page search result styling to authors as a highlight pseudo-element, similar to selection and spelling errors. This lets developers change foreground and background colors or add text decorations. This is especially useful if browser defaults have insufficient contrast with page colors or are otherwise unsuitable. Tracking bug #339298411 | ChromeStatus.com entry | Spec
Non-tree-scoped container-name matching
Ignore tree-scope when matching container-name for @container queries. Previously, container-name matching for container queries used tree-scoped names or references for matching. This meant the same name didn't match if the @container rule and the container-type property originated from different trees, such that the container-type declaration came from an inner shadow tree. With this change, container names match regardless of @container rule or container-type declaration origins. Tracking bug #440049800 | ChromeStatus.com entry | Spec
CSS anchor positioning with transforms
When an anchor-positioned element is tethered against an anchor that has a transform (or is contained by an element with a transform), resolve anchor() and anchor-size() functions against the bounding box of the transformed anchor. Tracking bug #382294252 | ChromeStatus.com entry | Spec
CSS caret-shape property
The caret's shape in native applications is most commonly a vertical bar, an underscore, or a rectangular block. Additionally, the shape often varies depending on the input mode, for example, insert or replace. The CSS caret-shape property lets sites choose one of these shapes for the caret inside editable elements, or leave the choice to the browser. The recognized property values are auto, bar, block, and underscore. Tracking bug #353713061 | ChromeStatus.com entry | Spec
SVG2 CSS cascading
Align the Chrome implementation with the SVG2 specification for matching CSS rules in element trees. Match selectors against the instantiation elements instead of the originating element subtree. This means selectors no longer match ancestor and sibling elements outside the cloned subtree. More importantly, state selectors, for example, :hover, now start matching in instances. Tracking bug #40550039 | ChromeStatus.com entry | Spec
Respect overscroll-behavior on non-scrollable scroll containers
The overscroll-behavior property applies to all scroll container elements, regardless of whether those elements currently have overflowing content or are user scrollable. Developers can use overscroll-behavior to prevent scroll propagation on an overflow: hidden backdrop or an overflow: auto element without considering whether it will currently be overflowing. ChromeStatus.com entry | Spec
Respect overscroll-behavior for keyboard scrolls
When you set overscroll-behavior to a value other than auto, the browser shouldn't perform scroll chaining. The browser respects this for mouse or touch scrolling, but keyboard scrolls ignored it. This change makes keyboard scrolling also respect overscroll-behavior. Tracking bug #41378182 | ChromeStatus.com entry | Spec
@scroll-state scrolled support
Lets developers style descendants of containers based on the most recent scrolling direction. Tracking bug #414556050 | ChromeStatus.com entry | Spec
Side-relative syntax for background-position-x/y longhands
Defines the background image position relative to one of its edges. This syntax gives developers more flexible and responsive mechanisms to define the background image position, instead of using fixed values that need adaptation to the window or frame size. This feature also applies to the -webkit-mask-position property to ensure web compatibility. Tracking bug #40468636 | ChromeStatus.com entry | Spec
View transitions waitUntil() method
View transitions automatically construct a pseudo-element tree to display and animate participating elements in the transition. Per the specification, this subtree is constructed when the view transition starts animating and is destroyed when the animations associated with all view transition pseudo-elements are in the finished state (or more precisely, in a non-running, non-paused state). This works for most cases and provides a seamless experience for developers. However, for more advanced cases, this is insufficient because developers sometimes want the view transition pseudo-tree to persist beyond the animation finish state. One example is tying view transitions with Scroll Driven Animations. When a scroll timeline controls the animation, the subtree shouldn't be destroyed when the animations finish because scrolling back should still animate the pseudo elements. To enable advanced uses of view transition, this intent adds a waitUntil() function on the ViewTransition object that takes a promise. This promise delays destruction of the pseudo-tree until it settles. Tracking bug #346976175 | ChromeStatus.com entry | Spec
Device
XRVisibilityMaskChange
Adds an XRVisibilityMaskChange event that provides a list of vertices and a list of indices to represent the mesh of the visible portion of the user's viewport. This data can then limit the amount of the viewport drawn to, which improves performance. To better support this event, XRView objects are also given unique identifiers to allow easier pairing with the associated masks. This extends the core WebXR specification. Tracking bug #450538226 | ChromeStatus.com entry | Spec
DOM
The element
Introduces the element, a declarative, user-activated control for accessing the user's location. It streamlines the user and developer journey by handling the permission flow and directly providing location data to the site. This often eliminates the need for a separate JavaScript API call. This addresses the long-standing problem of permission prompts triggering directly from JavaScript without a strong signal of user intent. By embedding a browser-controlled element in the page, the user's click provides a clear, intentional signal. This enables a better prompt UX and, crucially, provides a recovery path for users who previously denied the permission. Tracking bug #435351699 | ChromeStatus.com entry | Spec
Graphics
WebGPU: Uniform buffer standard layout
Uniform buffers declared in WGSL shaders are no longer required to have 16-byte alignment on array elements or to pad nested structure offsets to a multiple of 16 bytes. Tracking bug #452662924 | ChromeStatus.com entry | Spec
WebGPU: subgroup_id feature
The subgroup_id and num_subgroups built-in values are available when the subgroups extension is enabled. Tracking bug #454654255 | ChromeStatus.com entry | Spec
JavaScript
Temporal in ECMA262
The Temporal API in ECMA262 is a new API that provides standard objects and functions for working with dates and times. Date has been a long-standing pain point in ECMAScript. This proposes Temporal, a global Object that acts as a top-level namespace (similar to Math), which brings a modern date and time API to the ECMAScript language. Tracking bug #detail?id=11544 | ChromeStatus.com entry | Spec
Support ping, hreflang, type, and referrerPolicy for SVGAElement
Adds support for ping, hreflang, type, and referrerPolicy attributes on SVGAElement, aligning its behavior with HTMLAnchorElement for consistent link handling across HTML and SVG. Tracking bug #40589293 | ChromeStatus.com entry | Spec
Mirroring of RTL MathML operators
Supports character-level and glyph-level mirroring when rendering MathML operators in right-to-left mode. When using RTL mode, some operators can be mirrored by changing them to another code point. For example, a right parenthesis becomes a left parenthesis. This is character-level mirroring, with equivalences defined by Unicode's Bidi_Mirrored property. Some operators have no appropriate mirroring character. Glyph-level mirroring applies in this case, with the rtlm font feature, where another glyph can replace it in a mirrored context. Some existing implementations mirror the original glyph directly, but this might change the meaning for asymmetrical characters, for example, the clockwise contour integral. Tracking bug #40120782 | ChromeStatus.com entry | Spec
The clipboardchange event
The clipboardchange event fires whenever a web app or any other system application changes the system clipboard contents. This lets web apps, for example, remote desktop clients, keep their clipboards synchronized with the system clipboard. It provides an efficient alternative to polling the clipboard (using JavaScript) for changes. Tracking bug #41442253 | ChromeStatus.com entry | Spec
Permissions
User-Agent Client Hints ch-ua-high-entropy-values permissions policy
Adds support for a ch-ua-high-entropy-values permissions policy that enables a top-level site to restrict which documents can collect high-entropy client hints with the navigator.userAgentData.getHighEntropyValues() JavaScript API. Restricting collection of high-entropy hints over HTTP is possible through existing per-client-hint permissions policies. Tracking bug #385161047 | ChromeStatus.com entry | Spec
Performance
Performance and Event Timing: interactionCount
The Event Timing API is part of the Performance Timeline and measures the performance of user interactions. Certain events have an interactionId value assigned to them. This is useful for grouping related interactions based on common physical user inputs or gestures. This feature adds a performance.interactionCount property, which is the total number of interactions that occurred on the page. In particular, this feature is useful for computing the Interaction to Next Paint (INP) metric value. This requires knowing the total number of interactions to compute a high percentile score (p98 for pages with more than 50 total interactions). This feature has been specified for a long time, was prototyped in Chromium a long time ago but never shipped, is part of Interop 2025, and is available in other browsers. ChromeStatus.com entry | Spec
User input
Interoperable pointer and mouse boundary events after DOM changes
After an event target is removed from the DOM, the logical target of the pointer, as implied by the Pointer and Mouse boundary events (that is, over, out, enter, and leave events), should be the nearest ancestor still attached to the DOM. The PEWG recently reached consensus on this behavior. Chrome tracked a node even after it was removed from the DOM. As a result, if the pointer moves to a new node B after the hit-test node A is removed from the DOM, the boundary event sequence (pointerover, pointerout, pointerenter, pointerleave events, and the corresponding mouse events) implied a pointer movement from A to B. As per the new consensus, the event sequence implies a pointer movement from the "parent of A" to B. Tracking bug #1147998 | ChromeStatus.com entry | Spec
Pointer lock on Android
Provides access to raw mouse movement by locking the target of mouse events to a single element and hiding the mouse cursor. Tracking bug #40290045 | ChromeStatus.com entry | Spec
WebRTC
RTCDegradationPreference enum value maintain-framerate-and-resolution
maintain-framerate-and-resolution disables WebRTC's internal video adaptation. This lets the application implement its own adaptation logic and prevents interference from the internal adaptation. From the WebRTC MediaStreamTrack Content Hints specification: …