paint-brush
What Is Google Baseline?: A Quick Look at Its Impact on Browser Compatibility and Interoperabilityby@dainemawer
136 reads

What Is Google Baseline?: A Quick Look at Its Impact on Browser Compatibility and Interoperability

by Daine MawerMay 1st, 2024
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

Baseline is a platform for interoperability. It helps engineers determine what is fully stable across browser vendors for the most recent two versions of each browser. Baseline also plans to provide a way to see what has become stable across all browser vendors through a year-on-year approach.
featured image - What Is Google Baseline?: A Quick Look at Its Impact on Browser Compatibility and Interoperability
Daine Mawer HackerNoon profile picture

For years, web developers of all experience levels have relied on __caniuse.com __to understand the support of a given feature. Reviewing caniuse.com is helpful in determining backward compatibility or which of the modern browsers supports cutting-edge improvements to web specifications.

In 2023, Google introduced Baseline to the web community. This tool is not just another addition to the developer's toolkit but a crucial aid in determining the safety of features and APIs for use in production-grade web applications. It’s a platform for interoperability, a much-needed resource to help engineers produce more consistent and efficient experiences, and a testament to Google's commitment to improving web best practices.

Why Google Baseline?

Browsers are constantly evolving, and vendors release updates monthly. With more individuals contributing and working on specifications than ever before and a far more transparent dialogue between the main browser vendors (Safari, Firefox, Chrome, Edge), it's become increasingly difficult to track which new features are stable across the landscape. However, with the introduction of Baseline, this struggle is significantly alleviated.


Considering the above, as new features are released into browser engines, engineers often need more time to ramp up, refactor, or strategically plan the introduction of new features into their code bases.


More importantly, as Google is often one of the platforms that push front-end technology forward, it has admittedly accepted that it is partly to blame here. It’s one of the reasons the Chrome team came up with web.dev and developer.chrome.com, as Chrome is often the first browser to land cutting-edge technologies. The introduction of Baseline has also led to further documentation and conferences focused on interoperability.


New features mean documentation, and Google has made strides to ensure MDN has the relevant documentation for newer technologies as they land in Chrome.

Closing the Vendor Gap

From Google's perspective, engineers have one significant struggle: the behaviour and consistency of features across vendors and browser engines. It’s a pain point for all engineers in the field, requiring complex planning and solutions often to overcome a particular browser engine's lack of support.


The solution here (for the last two years) was Interop 2022 and Interop 2023 - a conference and community that helps bridge the gap between browsers to provide a more consistent and performant web.

What is Baseline?

Baseline serves as the universal flag of acceptance across browser vendors. It helps engineers determine what is fully stable across the landscape and across browser vendors for the most recent two versions of each browser. This feature stability assurance is a game-changer in web development, providing a reliable benchmark for engineers to base their decisions on.

How Does Baseline Work?

You can access Google Baseline on MDN, web.dev and caniuse.com.


Baseline also plans to provide a way to see what has become stable across all browser vendors through a year-on-year approach. For instance, you can read the following article to see what got added to Baseline in 2023: Baseline 2023


As engineering teams, we must keep up with these changes and avoid getting stuck in old solutions for common problems.


Importantly, Baseline has two labels:

  1. Newly available: the feature is finally interoperable.
  2. Widely available: 30 months have passed since the interoperable date.


Baseline considers the major browser vendors to be:


Google Baseline’s Effect on Engineering Teams

One of the most significant benefits of Google Baseline for engineering teams is the removal of guesswork and research required to implement new features. For instance, a Frontend Engineer may want to leverage CSS Grid's new sub-grid feature. With Baseline, they can quickly and confidently determine its support across major browsers, saving time and effort.


Sub-grid helps engineers define a grid within a grid to have more refined control over layouts. Heading to caniuse.com tells us there’s a global usage percentage of 87.42%—pretty decent, but we still need to ascertain which browser vendors support / don’t support / partially support the feature.


CanIUse now displays a Baseline badge that tells us that this feature is “Newly available across major browsers.


Likewise, if you review the documentation for the sub-grid on MDN, you’ll see a similar banner:



Finally, if you review the sub-grid article on web.dev, you’ll see this feature got added to Baseline in 2023:



A Word on Evergreen Browsers

In my opinion, we do not talk enough about this topic. For most modern users, the days of manually updating browsers are gone. Chrome, Firefox, and Edge auto-update automatically. Safari is an outlier in this case. Safari requires a manual update when a new release is sent out from Apple or when OS X is upgraded annually.


Regardless, more users than ever use the latest version of browsers. Although we should ensure the features we build degrade gracefully, this is less of a fundamental consideration nowadays and more of a luxury assumption.