API proposed by Chrome: Declarative partial updates
Chrome has introduced a new set of APIs called Declarative Partial Updates to enhance web performance. These APIs allow developers to deliver HTML content in a non-linear fashion, improving the user experience. The features are currently available for testing in Chrome 148 and are being standardized with positive feedback from other browser vendors.
- ▪Declarative Partial Updates enable out-of-order streaming of HTML content.
- ▪New APIs utilize the <template> element and processing instruction placeholders for dynamic content insertion.
- ▪These features are available for developer testing using a specific Chrome flag.
Opening excerpt (first ~120 words) tap to expand
Chrome for Developers Blog Declarative partial updates Stay organized with collections Save and categorize content based on your preferences. .wd-authors { --avatar-size: 65px; display: flex; gap: 2em; } .wd-author { display: flex; flex-wrap: wrap; gap: 1em; line-height: calc(var(--avatar-size) / 2); } .wd-author img { border-radius: 50%; height: var(--avatar-size, 65px); width: var(--avatar-size, 65px); } .dcc-authors { --avatar-size: 65px; display: flex; gap: 2em; } .dcc-author { display: flex; flex-wrap: wrap; gap: 1em; line-height: calc(var(--avatar-size) / 2); } .dcc-author img { border-radius: 50%; height: var(--avatar-size, 65px); width: var(--avatar-size, 65px); } .dcc-author__links { display: flex; } .dcc-author__links a { margin-inline-end: 6px; } .dcc-author__links…
Excerpt limited to ~120 words for fair-use compliance. The full article is at Chrome for Developers.