Contact: early-hints-experiment@chromium.org
As of version 95, Chrome experimentally supports Early Hints. Early Hints enable browsers to start preload before the main response is served. In addition, this can be used with other Resource Hints APIs like preconnect.
Currently Chrome is running A/B testing in the field to evaluate the performance impact of Early Hints. Chrome also provides some ways to opt-in Early Hints for web developers who want to try the feature. This document describes the status of the current implementation and how to enable Early Hints support.
Chrome supports preload and preconnect in Early Hints for top-level frame navigation. See the explainer how it works.
To reduce security and privacy implications, Chrome ignores Early hints sent in the following situations.
- Early Hints sent on subresource requests
- Early Hints sent on iframe navigation
- Early Hints sent on HTTP/1.1 or earlier
Chrome doesn’t handle dns-prefetch and prefetch in Early Hints yet. We consider supporting them in the future.
Early Hints can be enabled by a command line flag, or via Origin Trial.
Passing the --enable-features=EarlyHintsPreloadForNavigation
command line flag
to Chrome enables Early Hints support.
You can opt any page on your origin into Early Hints by requesting a token for your origin. Include the token in both Early Hints and the final response so that Chrome can recognize your pages opted in Early Hints.
HTTP/1.1 103 Early Hints
Origin-Trial: **your token**
Link: </style.css>; rel="preload"; as="style"
Link: <https://cdn.test>; rel="preconnect"
HTTP/1.1 200 OK
Origin-Trial: **your token**
Link: </style.css>; rel="preload"; as="style"
Link: <https://cdn.test>; rel="preconnect"
Content-Type: text/html; charset=utf-8
<!DOCTYPE html>
...
<meta http-equiv="origin-trial" content="**your token**">
also works for the
final response but doesn’t work for Early Hints since Early Hints cannot convey
a response body.
If a resource is preloaded by Early Hints, the corresponding
PerformanceResourceTiming
object reports initiatorType
is "early-hints".
performance.getEntriesByName('https://a.test/style.css')[0].initiatorType
// => 'early-hints'