惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

developer.chrome.com: Blog

A developer toolkit to make your website agent-ready  |  Blog  |  Chrome for Developers Unlock runtime insights: Introducing third-party developer tools for Chrome DevTools for agents  |  Blog  |  Chrome for Developers What's New in WebGPU (Chrome 149-150)  |  Blog  |  Chrome for Developers Join the WebMCP origin trial  |  Blog  |  Chrome for Developers Seamless PWA origin migration: Change domains without losing users  |  Blog  |  Chrome for Developers Chrome 150 beta  |  Blog  |  Chrome for Developers What's new in DevTools (Chrome 149)  |  Blog  |  Chrome for Developers Build new features using built-in AI in Chrome  |  Blog  |  Chrome for Developers What's new in web extensions: I/O 2026 recap  |  Blog  |  Chrome for Developers
New in Chrome 149  |  Blog  |  Chrome for Developers
2026-06-02 · via developer.chrome.com: Blog

New in Chrome 149

Rachel Andrew

Published: June 2, 2026

Chrome 149 is rolling out now, and this post shares some of the key features from the release. Read the full Chrome 149 release notes.

Highlights from this release:

  • CSS gap decorations let you style the gaps in container layouts like grid and flexbox.
  • Disconnect WebSockets on bfcache entry lets pages with active WebSocket connections enter the Back/Forward Cache.
  • Intl.Locale.prototype.variants returns or sets the variants of a locale.

CSS gap decorations

CSS gap decorations let you style gaps in container layouts like grid and flexbox, bringing consistency and new styling options that previously required complex border and pseudo-element hacks. This feature is progressive-enhancement friendly; in unsupported browsers, gaps render normally without decorations.

It introduces properties like column-rule-inset and row-rule-inset to shrink or extend decorations, and column-rule-visibility-items and row-rule-visibility-items to show rules only between adjacent items or in every gap. Rule width, color, and insets are fully animatable, letting you transition them on hover or other state changes.

Learn more in the CSS gap decorations stable post.

Disconnect WebSockets on bfcache entry

Active WebSocket connections no longer prevent a page from entering the Back/Forward Cache (bfcache). By proactively closing WebSocket connections on BFCache entry instead of marking the document as ineligible, the browser lets pages with active WebSockets be stored in memory and instantly restored.

Previously, any active WebSocket connection forced the browser to discard the page when the user navigated away, preventing it from being stored in the Back/Forward Cache (bfcache).

Intl.Locale.prototype.variants

The Intl.Locale object represents a Unicode locale identifier. The main object is Baseline Widely available.

Variants are a part of the main language identifier, and select variants of a language that the (language, region, script) triple cannot differentiate. This feature is already shipped in Firefox and Safari, and is now available in Chrome.

For example:

const locale = new Intl.Locale("sl-rozaj-biske");
console.log(locale.variants); // "rozaj-biske"

Learn more at the MDN documentation for Intl.Locale.prototype.variants.

Further reading

This covers only some key highlights. Check the following links for additional changes in Chrome 149.

Subscribe

To stay up to date, subscribe to the Chrome Developers YouTube channel, and you'll get an email notification whenever we launch a new video. Or follow us on X or LinkedIn for new articles and blog posts.

As soon as Chrome 150 is released, we'll be right here to tell you what's new in Chrome!

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026-06-02 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-06-02 UTC."],[],[]]