LazyLoad
sclittle@chromium.org
LazyLoad
Network and computation resources are used for content that the user never sees
This wastes data, wastes memory, and competes with visible content, slowing it
LazyLoad
Defer some below the fold content
From lab benchmarks (230 mobile URLs, cold cache, no scrolling):
LazyLoad
Load deferred content once the user scrolls near it, using IntersectionObserver
Deferred element OnLoad events will wait for the lazy load to complete
Document OnLoad events will not wait for deferred content
Plan is to add an HTML attribute to allow developers to control what gets lazyloaded.
Current Status
Aiming to have a dev-channel experiment for lazy frames in M68
Thanks!