Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Minor tweak to Chrome versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
addyosmani committed Jul 17, 2020
1 parent 8326ea8 commit f702f30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/site/content/en/fast/native-lazy-loading/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Today, Chrome already loads images at different priorities depending on where th
respect to the device viewport. Images below the viewport are loaded with a lower priority, but they're
still fetched as soon as possible.

In Chrome 76, you can use the `loading` attribute to completely defer the loading of offscreen images that can be reached by scrolling:
In Chrome 76+, you can use the `loading` attribute to completely defer the loading of offscreen images that can be reached by scrolling:

```html
<img src="image.png" loading="lazy" alt="" width="200" height="200">
Expand Down Expand Up @@ -105,7 +105,7 @@ reached, may change in the near future as the Chrome team improves heuristics to
begin loading.

{% Aside %}
In Chrome 77, you can experiment with these different thresholds by [throttling the
In Chrome 77+, you can experiment with these different thresholds by [throttling the
network](https://developers.google.com/web/tools/chrome-devtools/network/#throttle) in DevTools. In
the meantime, you will need to override the effective connection type of the browser using the
`chrome://flags/#force-effective-connection-type` flag.
Expand Down Expand Up @@ -325,7 +325,7 @@ like any other image or iframe.

### How are images handled when a web page is printed?

Although the functionality isn't in Chrome 76, there's an [open
Although the functionality isn't in Chrome currently, there's an [open
issue](https://bugs.chromium.org/p/chromium/issues/detail?id=875403) to ensure that all images and
iframes are immediately loaded if a page is printed.

Expand Down

0 comments on commit f702f30

Please sign in to comment.