红联Linux门户
Linux帮助

Google Chrome稳定版55.0.2883.75正式发布

发布时间:2016-12-02 09:21:42来源:红联作者:baihuo
输入处理改进

As usage of the mobile web grows, it is increasingly important for sites to react well to touch input. Historically, this meant handling MouseEvent and TouchEvent separately, which can be difficult to maintain. Chrome now enables unified input handling by dispatching PointerEvents. PointerEvents lead to more responsive pages, as they don’t block scrolling by default. To achieve the same performance with TouchEvent, pages can use passive event listeners.
Chrome also now supports two new ways to respond to input. The touch-action CSS property enables sites to react to gestures such as panning. For mouse buttons, the new auxclick input event type allows sites to manage the click behavior of non-primary buttons.
异步和等待功能

Asynchronous JavaScript can be difficult to reason about. Promises help avoid the nesting problem of callbacks, but Promise-based code can still be difficult to read when a site has large chains of asynchronous dependencies. Chrome now supports the async and await JavaScript keywords, allowing developers to write Promise-based JavaScript that can be as structured and readable as synchronous code.

Fetching a URL and logging the response using Promises:[code]function logFetch(url) { return fetch(url)

.then(response => response.text())

.then(text => {

console.log(text);

}).catch(err => {

console.error('fetch failed', err);

});

}[/code]The same code using async and await:[code]async function logFetch(url) { try {

const response = await fetch(url);

console.log(await response.text());

}

catch (err) {

console.log('fetch failed', err);

}

}[/code]CSS 自动连字

Formatting text to fill available space can be a challenge across devices and screen sizes. Chrome now supports CSS automatic hyphenation, one of Chrome’s most frequently requested layout features, on Android and Mac. CSS hyphenation allows the browser to hyphenate words when line-wrapping, improving the visual consistency of text blocks. Hyphenation support will be extended to other platforms in future releases.

hyphenation-gif-2.gif

A paragraph rendered with and without automatic hyphenation
其他特性

The once event listener option enables callbacks to be invoked only once before removing the event listener.

Sites can now mark web storage as persistent, preventing Chrome from automatically clearing storage for that site.

Cross-origin iframes now require a user gesture to start audio playback using the Web Audio API on Android, matching the behavior of the

频道文章

最新教程

随机推荐