Pages on our site have always had near-zero CLS. This makes sense, as they are server-rendered HTML page with a simple static layout.
Recently we added use of content-visibility: auto per the below (added only to below-the-fold sections):
https://web.dev/content-visibility/
section {
content-visibility: auto;
contain-intrinsic-size: 1000px;
}
This has no visible impact in the browser, but yields the expected significant benefits to paint/render metrics according to dev tools "Performance" tab, chrome lighthouse measurements, and repeated runs on webpagetest.org
However, we noticed cumulative layout shift (CLS) jumped drastically for 0.006 to 1.000+ in the lab data section on google pagespeed insights:
https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.godaddy.com
Anyone else observe this? Potentially a bug in how lighthouses measures CLS?