Skip to content
ClearedGet the next issue
Issue 07

Cleared 07 · July 2026 · Cleared to use. Cleared to delete. Five minutes.

AVIF cleared: one fallback can go

Published August 3, 2026 · covers July 2026 · 1 Cleared

July was thin. One feature arrived in the whole month, a JavaScript locale API outside the CSS and HTML this publication covers, and three crossed 30 months, all that a quiet January 2024 had set in motion. Two of the three ask nothing of you. The third is AVIF, and it retires one of your image fallbacks.

01Cleared

AVIF

Safe everywhere as of July 25, 2026

The AV1 image format. Chrome has decoded it since 2020; Edge completed the core set on January 25, 2024, and the 30-month clock ran out on July 25. If your images ship as a three-format stack, AVIF on top, WebP in the middle, JPEG at the floor, the middle is now dead weight.

Delete: the WebP sources in your <picture> elements, and the encode step that produces them.

HTML · before after
<source srcset="chart.avif" type="image/avif">
<source srcset="chart.webp" type="image/webp">
<img src="chart.jpg" alt="Monthly revenue">

<source srcset="chart.avif" type="image/avif">
<img src="chart.jpg" alt="Monthly revenue">

A browser takes the first source whose type it supports, and every browser in the core set now takes the AVIF. The browsers still outside the set never reached the WebP for its format; they needed a floor they could render, and that is the JPEG’s job. What the WebP bought them was bytes: without it they download the same picture, heavier. That is the whole cost of the deletion, and it falls on a shrinking audience.

The floor stays. AVIF sits at about 93% of global traffic on caniuse’s counters, so a bare .avif in src with no fallback is a broken image for about one visitor in fifteen: desktop Safari before 16.4, iOS before 16.1, and every browser too old to have met the format. A missing image does not degrade, it is simply absent. Delete the middle of the stack, never the bottom.

Most sites never built this stack. In the HTTP Archive’s 2024 almanac, about one image in eight was a WebP and about one in a hundred an AVIF, and a <picture> that switches on format appeared on a few pages in a hundred. Search your templates for type="image/webp": if nothing comes back, or the floor under your sources is itself a .webp, there is no middle to delete and nothing to do this month.

One number needed a look before this verdict could ship. webstatus.dev scores stable Firefox at 0 on AVIF’s tests. The suite behind that number is two rendering tests, and ordinary still-image decoding is in neither: one advances an animated AVIF to its second frame, the other renders a file carrying a progressive-rendering flag. Firefox currently fails both. For a static image stack, the deletion above, they say nothing. If you ship animated or progressively encoded AVIF, test those files in Firefox before leaning on them.

Deleted something thanks to this? Got a correction? .

Subscribe